修改测试问题
This commit is contained in:
@@ -26,7 +26,11 @@ const tableStore = new TableStore({
|
||||
column: [
|
||||
{ title: '设备名称', field: 'devName', align: 'center' },
|
||||
{ title: '操作用户', field: 'operatorName', align: 'center' },
|
||||
{ title: '操作内容', field: 'processName', align: 'center', width: '300' },
|
||||
{
|
||||
title: '操作内容', field: 'process', align: 'center', formatter: (row: any) => {
|
||||
return row.cellValue == 1 ? '设备登记' : row.cellValue == 2 ? '功能调试' : row.cellValue == 3 ? '出厂调试' : row.cellValue == 4 ? '设备投运' : ''
|
||||
}
|
||||
},
|
||||
{ title: '开始时间', field: 'startTime', align: 'center' },
|
||||
{ title: '结束时间', field: 'endTime', align: 'center' }
|
||||
],
|
||||
@@ -52,5 +56,5 @@ onMounted(() => {
|
||||
tableStore.index()
|
||||
})
|
||||
|
||||
const addMenu = () => {}
|
||||
const addMenu = () => { }
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user