From 3904743f49ed394d306edee4b9ae27ef55d88882 Mon Sep 17 00:00:00 2001 From: shijing Date: Tue, 26 Dec 2023 16:21:56 +0800 Subject: [PATCH] =?UTF-8?q?#106=E8=BD=A6=E9=97=B4=E4=BB=8A=E6=97=A5?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=98=BE=E7=A4=BAutask?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/bigScreen/index_6dept.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/bigScreen/index_6dept.vue b/src/views/bigScreen/index_6dept.vue index 1548bd18..0b174e7c 100644 --- a/src/views/bigScreen/index_6dept.vue +++ b/src/views/bigScreen/index_6dept.vue @@ -14,8 +14,8 @@
-
- {{item.material_out_name}} +
+ {{item.number}} {{item.count}} @@ -282,7 +282,7 @@ export default { refValue2:'moocBox2', liData1: ['序号','日期', '型号', '规格', '发货数量'], liData2: ['序号','工序','产品名称', '型号', '计划数量', '合格数量', '完成进度', '合格率','操作人'], - todayMtask:[], + todayUtask:[], saleOutData:[], processData:[], time: null, @@ -322,7 +322,7 @@ export default { this.yesterday = yesterday.getFullYear()+"-" + (yesterday.getMonth()+1) + "-" + yesterday.getDate(); this.getsaleOut(); this.getMioItem();//发货情况 - this.getTodayMtask();//今日任务 + this.getTodayUtask();//今日任务 //昨日工序进度 this.getMtask(); //时间 @@ -352,15 +352,15 @@ export default { }, 500) }, //今日任务 - getTodayMtask(){ + getTodayUtask(){ let that = this; let obj ={}; obj.start_date = this.today; obj.end_date = this.today; obj.belong_dept__name='6车间'; obj.page=0; - that.$API.pm.mtask.list.req(obj).then((res) => { - that.todayMtask=res; + that.$API.pm.utask.list.req(obj).then((res) => { + that.todayUtask=res; console.log('今日任务:',res); }); },