修改 数据中心测试bug

This commit is contained in:
GGJ
2024-11-13 16:21:08 +08:00
parent 7640b53b20
commit e53a3dd8dd
11 changed files with 1721 additions and 7 deletions

View File

@@ -98,7 +98,7 @@ const tableStore = new TableStore({
tableStore.table.data.forEach((item: any) => {
item.data1 ? (item.data = JSON.parse(item.data1)) : ''
item.celldata.forEach((k: any) => {
item.data[k.r][k.c].v ? (item.data[k.r][k.c].v = k.v) : ''
item.data[k.r][k.c].v ? (item.data[k.r][k.c] = k.v ) : ''
})
})
console.log(tableStore.table.data)