9000系统测试用例调整

This commit is contained in:
sjl
2026-01-22 16:15:33 +08:00
parent 8b356c87a3
commit 56d65a6c17
59 changed files with 243 additions and 99 deletions

View File

@@ -43,6 +43,8 @@
v-model="tableStore.table.params.filterName"
@keyup="searchEvent"
clearable
maxlength="32"
show-word-limit
placeholder="输入关键字筛选"
/>
</el-form-item>
@@ -75,6 +77,7 @@
:checkbox-config="{ labelField: 'name' }"
>
<vxe-column
v-if="treeData && treeData.length > 0"
field="name"
align="left"
type="checkbox"
@@ -82,6 +85,15 @@
min-width="200"
tree-node
></vxe-column>
<!-- 没有数据时显示普通列 -->
<vxe-column
v-else
field="name"
align="left"
title="电网拓扑"
min-width="200"
tree-node
></vxe-column>
<vxe-column field="devType" title="终端型号">
<template #default="{ row }">
{{ teriminaloption.find((item: any) => item.id === row.devType)?.name }}