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() },