测试用例修改

This commit is contained in:
sjl
2025-07-24 09:31:47 +08:00
parent 2200494765
commit 40564ee283
16 changed files with 47 additions and 18 deletions

View File

@@ -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',

View File

@@ -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)',