Update index_search.html

This commit is contained in:
邹景立 2022-04-30 16:26:34 +08:00
parent 9d5b9523c2
commit b765e011a2

View File

@ -107,7 +107,7 @@
}, function (rawCell, newCell, row, config, currentRow, currentCol, fieldKey) {
/* 判断并转换单元格数据为对象,以便初始化样式 */
typeof rawCell !== 'object' && (rawCell = {v: rawCell});
rawCell.s = Object.assign(style2, rawCell.s || {});
rawCell.s = Object.assign({}, style2, rawCell.s || {});
return (currentRow % 2 === 0) ? newCell : rawCell;
});