From 1167bb217f846135da4e5304f82e005ac402cc1e Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Wed, 31 May 2023 11:21:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E4=BB=A3=E7=A0=81=E5=A4=87=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/udi/trace/task/index.vue | 148 +++++++++++++++++++++++++---- 1 file changed, 132 insertions(+), 16 deletions(-) diff --git a/src/views/udi/trace/task/index.vue b/src/views/udi/trace/task/index.vue index 89d5f7e..4898ce5 100644 --- a/src/views/udi/trace/task/index.vue +++ b/src/views/udi/trace/task/index.vue @@ -4,21 +4,40 @@ + + + + + + + + + + + + - + + + + + + - + + + + + + + + + + + @@ -62,9 +81,10 @@ - - + + + - + @@ -117,8 +138,19 @@ style="width: 100%" highlight-current-row border> - - + + + + + + + + + @@ -168,6 +200,10 @@ export default { ylqxzcrbarmc: null, page: 1, limit: 10, + startTime: null, + endTime: null, + startAduditTime: null, + endAduditTime: null, }, total: 0, codeRelTotal: 0, @@ -180,6 +216,40 @@ export default { formView: {}, formViewCodeRel: {}, showSearch: true, + actDateRange: [], + auditDateRange: [], + pickerOptions: { + shortcuts: [ + { + text: "最近一周", + onClick(picker) { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); + picker.$emit("pick", [start, end]); + }, + }, + { + text: "最近一个月", + onClick(picker) { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); + picker.$emit("pick", [start, end]); + }, + }, + { + text: "最近三个月", + onClick(picker) { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); + picker.$emit("pick", [start, end]); + }, + }, + ], + }, + } }, methods: { @@ -187,6 +257,30 @@ export default { hideSearch() { this.showSearch = !this.showSearch; }, + formatTaskType(row) { + switch (row.taskType) { + case 1: + return '关联关系'; + case 2: + return '入库'; + case 3: + return '出库'; + default: + return '任务类型有误!!'; + } + }, + formatTaskType1(row) { + switch (row.status) { + case 1: + return '未处理'; + case 2: + return '正在处理'; + case 3: + return '已处理'; + default: + return '任务状态有误!!'; + } + }, // //点击一行数据后发送的事件 // handleSelectionChange(val) { // this.currentRow = val; @@ -249,12 +343,34 @@ export default { ylqxzcrbarmc: null, page: 1, limit: 10, + startTime: null, + endTime: null, + startAduditTime: null, + endAduditTime: null, }; this.listCodeRel = null, - this.getTaskList(); + this.auditDateRange = []; + this.actDateRange = []; + this.getTaskList(); }, //查询事件 onSubmit(){ + this.loading = true; + if (this.actDateRange !== null) { + this.filterQuery.startTime = this.actDateRange[0]; + this.filterQuery.endTime = this.actDateRange[1]; + } else { + this.filterQuery.startTime = null; + this.filterQuery.endTime = null; + } + + if (this.auditDateRange !== null) { + this.filterQuery.startAduditTime = this.auditDateRange[0]; + this.filterQuery.endAduditTime = this.auditDateRange[1]; + } else { + this.filterQuery.startAduditTime = null; + this.filterQuery.endAduditTime = null; + } this.filterQuery.page = 1; this.getTaskList() },