From 4cb34c00bd7a8128a52b7e8c83078ab4e50f4603 Mon Sep 17 00:00:00 2001 From: shijing Date: Mon, 22 Jun 2026 14:08:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=A6=85=E9=81=93437=20=E5=88=86=E6=A3=80?= =?UTF-8?q?=E7=9A=84=E6=A3=80=E6=B5=8B=E8=A1=A8=E9=87=8C=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E5=96=B7=E7=A0=81=E5=B7=A5=E5=BA=8F=E7=9A=84=E5=B7=A5=E8=A3=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/statistics/bxerp/fenjian.vue | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/src/views/statistics/bxerp/fenjian.vue b/src/views/statistics/bxerp/fenjian.vue index 7978f2c8..92b64fbf 100644 --- a/src/views/statistics/bxerp/fenjian.vue +++ b/src/views/statistics/bxerp/fenjian.vue @@ -115,13 +115,18 @@ {{scope.row.data.分检_缺陷项_扭转角不合格?scope.row.data.分检_缺陷项_扭转角不合格:0}} - + + + + - + @@ -151,9 +156,21 @@ export default { apiObj: this.$API.wpm.wpr.query, options:[], tableData:[], + toolList:{}, }; }, + mounted() { + this.getToolings(); + }, methods: { + getToolings(){ + let that = this; + that.$API.em.equipment.list.req({ page: 0,type:10,cate__code:'7'}).then((res) => { + res.forEach((item) => { + that.toolList[item.id] = item.number; + }); + }); + }, handleQuery(){ let that = this; let querys = [[{field:"wm",value:false,compare:"isnull"},{field:"data__分检_日期",compare:"isnull",value:false},{field:"data__has_key",compare:"",value:"分检_批次号"}]];