From 4cd2cbd9db84950cb0b2ad6ce272f0cc288adba5 Mon Sep 17 00:00:00 2001 From: xielue Date: Sat, 16 Sep 2023 09:31:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A8=A1=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Mold/MoldProductionOrder/ComponentDetail.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/pages/Middle/Mold/MoldProductionOrder/ComponentDetail.vue b/src/pages/Middle/Mold/MoldProductionOrder/ComponentDetail.vue index 0f329d4..5800573 100644 --- a/src/pages/Middle/Mold/MoldProductionOrder/ComponentDetail.vue +++ b/src/pages/Middle/Mold/MoldProductionOrder/ComponentDetail.vue @@ -392,6 +392,8 @@ export default { this.detailsData2[i].department_id = row.department_id; this.detailsData2[i].department_detail = row.department_detail; + + } } }); @@ -399,6 +401,9 @@ export default { } } + setTimeout(()=>{ + this.detailsData2 = JSON.parse(JSON.stringify(this.detailsData2)); + },500); }, @@ -448,7 +453,7 @@ export default { this.$mk.post({ url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`, data: { - id: row.id + id:this.$mk.toBigInt( row.id) }, useBigInt: true, }).then(a => { @@ -463,7 +468,7 @@ export default { this.$mk.post({ url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`, data: { - id: row.id + id: this.$mk.toBigInt( row.id) }, useBigInt: true, }).then(a => { @@ -478,7 +483,7 @@ export default { this.$mk.post({ url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`, data: { - id: row.id + id:this.$mk.toBigInt( row.id) }, useBigInt: true, }).then(a => {