测试用例修改
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label='信息查询'>
|
||||
<el-input style="width:200px;" placeholder="电站名称,终端编号,型号" v-model='tableStore.table.params.searchValue' clearable></el-input>
|
||||
<el-input style="width:200px;" placeholder="电站名称,终端名称,型号" v-model='tableStore.table.params.searchValue' clearable></el-input>
|
||||
</el-form-item>
|
||||
|
||||
</template>
|
||||
@@ -60,7 +60,7 @@ const tableStore = new TableStore({
|
||||
minWidth: 150
|
||||
},
|
||||
{ field: 'bdName', title: '所属变电站', minWidth: 120 },
|
||||
{ field: 'devName', title: '终端编号', minWidth: 110 },
|
||||
{ field: 'devName', title: '终端名称', minWidth: 110 },
|
||||
{ field: 'loginTime', title: '投运时间', minWidth: 100 },
|
||||
{
|
||||
field: 'manufacturer',
|
||||
|
||||
@@ -67,7 +67,11 @@ const tableStore = new TableStore({
|
||||
{ field: 'scale', title: '监测点电压等级', minWidth: 120 },
|
||||
|
||||
{ field: 'loadType', title: '干扰源类型', minWidth: 120 },
|
||||
{ field: 'objName', title: '监测对象名称', minWidth: 180 },
|
||||
{ field: 'objName', title: '监测对象名称', minWidth: 180 ,
|
||||
formatter: (row: any) => {
|
||||
return row.objName ? row.objName : '/'
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'shortCapacity',
|
||||
title: '最小短路容量(MVA)',
|
||||
|
||||
Reference in New Issue
Block a user