修改台账树
This commit is contained in:
@@ -35,7 +35,7 @@ const tableStore: any = new TableStore({
|
||||
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
|
||||
}
|
||||
},
|
||||
{ field: 'name', title: '名称' },
|
||||
{ field: 'name', title: '方案名称' },
|
||||
{ field: 'onlineRateLimit', title: '在线率阈值' },
|
||||
{ field: 'integrityLimit', title: '完整性阈值' },
|
||||
{ field: 'updateTime', title: '创建时间' },
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="表名">
|
||||
<el-input maxlength="32" show-word-limit v-model.trim="tableStore.table.params.tableName" placeholder="请输入表名" clearable
|
||||
/>
|
||||
<el-input maxlength="32" show-word-limit v-model.trim="tableStore.table.params.tableName"
|
||||
placeholder="请输入表名" clearable />
|
||||
</el-form-item>
|
||||
</template>
|
||||
<template #operation>
|
||||
@@ -81,8 +81,15 @@ const tableStore: any = new TableStore({
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'unit', title: '单位', width: 80,
|
||||
formatter: (row: any) => {
|
||||
return row.cellValue || '/'
|
||||
}
|
||||
},
|
||||
{ field: 'minValue', title: '指标下限', width: 100 },
|
||||
{ field: 'maxValue', title: '指标上限', width: 100 },
|
||||
|
||||
{
|
||||
field: 'isVoltage',
|
||||
title: '电压等级参与',
|
||||
@@ -99,13 +106,8 @@ const tableStore: any = new TableStore({
|
||||
{ field: 'belongingSystem', title: '所属系统', width: 100 },
|
||||
|
||||
|
||||
{
|
||||
field: 'unit', title: '单位', width: 80,
|
||||
formatter: (row: any) => {
|
||||
return row.cellValue || '/'
|
||||
}
|
||||
},
|
||||
{ field: 'sort', title: '排序', width: 70 },
|
||||
|
||||
|
||||
{
|
||||
field: 'otherAlgorithm', title: '条件描述', minWidth: 200,
|
||||
formatter: (row: any) => {
|
||||
@@ -117,7 +119,7 @@ const tableStore: any = new TableStore({
|
||||
formatter: (row: any) => {
|
||||
return row.cellValue || '/'
|
||||
}
|
||||
},
|
||||
}, { field: 'sort', title: '排序', width: 70 },
|
||||
|
||||
{
|
||||
title: '操作',
|
||||
|
||||
Reference in New Issue
Block a user