Browse Source

feat:添加处理结果搜索

master
buaixuexideshitongxue 2 weeks ago
parent
commit
410e5824ea
  1. 23
      src/views/data/ComplaintCollection.vue

23
src/views/data/ComplaintCollection.vue

@ -188,6 +188,25 @@
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6">
<el-form-item label="处理结果">
<el-select
v-model="query.handleResultCode"
placeholder="处理结果"
multiple
clearable
collapse-tags
style="width: 100%"
>
<el-option
v-for="item in dict.handleResult"
:key="item.dictCode"
:value="item.dictValue"
:label="item.dictLabel"
/>
</el-select>
</el-form-item>
</el-col>
<!-- 局长信箱专属搜索框 - 注释 by Claude <!-- 局长信箱专属搜索框 - 注释 by Claude
<el-col :span="6" <el-col :span="6"
v-if=" query.sourceTableList?.length === 1 && String(query.sourceTableList[0]) === '23'"> v-if=" query.sourceTableList?.length === 1 && String(query.sourceTableList[0]) === '23'">
@ -459,6 +478,7 @@ const query = ref({
sourceTableSubOneList: [], sourceTableSubOneList: [],
involveDepartId: null, involveDepartId: null,
handleDepartId: null, handleDepartId: null,
handleResultCode: [],
}); });
watch( watch(
() => query.value.sourcePath, () => query.value.sourcePath,
@ -583,7 +603,8 @@ const storeDict = computed(() =>
"accountabilityTarget", "accountabilityTarget",
"processingStatus", "processingStatus",
"handleMethodType", "handleMethodType",
"yesNo" "yesNo",
"handleResult"
]) || {} ]) || {}
); );

Loading…
Cancel
Save