Browse Source

feat: 交互调整

master
buaixuexideshitongxue 3 weeks ago
parent
commit
6ccea091f8
  1. 11
      src/views/data/ComplaintCollection.vue

11
src/views/data/ComplaintCollection.vue

@ -8,7 +8,7 @@
<el-cascader
v-model="query.sourcePath"
:options="dict.sourceTableAndLevel"
:props="{ emitPath: true, checkStrictly: true , multiple: true }"
:props="{ emitPath: true, multiple: true }"
clearable
filterable
show-all-levels
@ -148,6 +148,14 @@
style="width: 100%"
placeholder="请选择涉嫌问题"
>
<el-option
:value="EMPTY_INVOLVE_PROBLEM_VALUE"
label="空"
>
<el-checkbox :model-value="(query.involveProblemIdList || []).includes(EMPTY_INVOLVE_PROBLEM_VALUE)">
</el-checkbox>
</el-option>
<el-option
v-for="item in dict.suspectProblem"
:key="item.dictValue"
@ -482,6 +490,7 @@ const route = useRoute()
const catchStore = useCatchStore();
const show = ref(false);
const userStore = useUserStore();
const EMPTY_INVOLVE_PROBLEM_VALUE = "__EMPTY__";
// region

Loading…
Cancel
Save