diff --git a/src/views/govern/device/control/analysisList/index.vue b/src/views/govern/device/control/analysisList/index.vue index b468d2e..3c3a53c 100644 --- a/src/views/govern/device/control/analysisList/index.vue +++ b/src/views/govern/device/control/analysisList/index.vue @@ -33,7 +33,14 @@ const tableStore: any = new TableStore({ column: [ // { width: '60', type: 'checkbox', fixed: 'left' }, { title: '序号', type: 'seq', width: 80 }, - { field: 'projectName', title: '工程名称', minWidth: 170 }, + { + field: 'projectName', + title: '工程名称', + minWidth: 170, + formatter: row => { + return row.cellValue ? row.cellValue : '/' + } + }, { field: 'successCount', title: '成功解析数', minWidth: 170 }, { field: 'startTime', title: '导入开始时间', minWidth: 170 }, { field: 'endTime', title: '导入结束时间', minWidth: 170 }, @@ -87,7 +94,7 @@ const tableStore: any = new TableStore({ loadCallback: () => { // tableStore.table.data=[] tableStore.table.height = 400 - console.log(tableStore.table.data, 'tableStore.table.data') + console.log(tableStore.table.publicHeight, 'tableStore.table.data') } }) provide('tableStore', tableStore)