From 03959e6b865e3ee7becb37e0006baef7d7b07f4a Mon Sep 17 00:00:00 2001 From: TanYibin <5491541@qq.com> Date: Thu, 11 Jan 2024 17:20:42 +0800 Subject: [PATCH] 任务状态筛选优化 --- ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue b/ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue index 9e11392..894fa7e 100644 --- a/ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue +++ b/ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue @@ -263,8 +263,7 @@ export default { key: 'zoneCode', scopedSlots: {customRender: 'zoneCode'}, filterMultiple: true, - filters: [ - ] + filters: [] }, { title: '起始库位', @@ -288,13 +287,7 @@ export default { key: 'status_dictText', scopedSlots: {customRender: 'status_dictText'}, filterMultiple: false, - filters: [ - {text: '生成任务', value: '1'}, - {text: '下发任务', value: '10'}, - {text: '开始执行', value: '20'}, - {text: '到达拣选台', value: '50'}, - {text: '任务完成', value: '100'}, - ] + filters: [] }, { title: '异常信息', @@ -389,9 +382,9 @@ export default { return; } //页面没加载完,此时methods里的方法找不到,使用定时器模拟点击 - let timeSearch=setInterval(()=>{ - let eleSearch= document.getElementById("search"); - if (eleSearch!=null){ + let timeSearch = setInterval(()=>{ + let eleSearch = document.getElementById("search"); + if (eleSearch != null) { //调用成功,清除定时器 clearInterval(timeSearch) eleSearch.click(); @@ -429,7 +422,6 @@ export default { '下发任务': 'blue', '到达拣选站台': 'orange', '任务完成': 'grey', - '整盘出库': 'blue', '分拣出库': 'green', default: 'blue' @@ -437,6 +429,11 @@ export default { return colors[status] || colors.default; }, initDictConfig() { + initDictOptions('task_header_status').then((res) => { + if (res.success) { + this.columns[7].filters = res.result; + } + }); }, clickThenSelect(record,index) { return { -- libgit2 0.22.2