修改bug

This commit is contained in:
13684185576
2025-07-21 11:02:19 +08:00
parent 14ddbbdcc4
commit 47af5aec1f
9 changed files with 123 additions and 252 deletions

View File

@ -15,6 +15,9 @@
<template #bxxLx="{ row }">
<DictTag :value="row.bxxLx" :tag="false" :options="D_BZ_BXDLX" />
</template>
<template #ssxq="{ row }">
<DictTag :value="row.ssxq" :tag="false" :options="D_BZ_XZQHDM" />
</template>
<template #bxds="{ row }">
<div>{{ row.bxds?.length }}</div>
</template>
@ -50,16 +53,17 @@ const showDetail = ref(false); // 控制详情弹窗显示
const searchConfiger = ref([
{
label: "必巡线名称",
prop: "bxxmc",
prop: "bxxMc",
placeholder: "必巡线名称",
showType: "input"
},
{
label: "所属辖区",
prop: "ssbmdm",
placeholder: "分县局",
showType: "department"
prop: "ssxq",
placeholder: "请选择",
showType: "select",
options:D_BZ_XZQHDM
}
]);
@ -80,7 +84,7 @@ const pageData = reactive({
controlsWidth: 200,
tableColumn: [
{ label: "必巡线名称", prop: "bxxMc" },
{ label: "所属辖区", prop: "ssbm" },
{ label: "所属辖区", prop: "ssxq", showSolt: true },
{ label: "必巡线类型", prop: "bxxLx", showSolt: true },
{ label: "必巡点数量", prop: "bxds", showSolt: true }
]