This commit is contained in:
xielue 2023-09-16 09:31:58 +08:00
parent efff7d83f9
commit 4cd2cbd9db
1 changed files with 8 additions and 3 deletions

View File

@ -392,6 +392,8 @@ export default {
this.detailsData2[i].department_id = row.department_id; this.detailsData2[i].department_id = row.department_id;
this.detailsData2[i].department_detail = row.department_detail; 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({ this.$mk.post({
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`, url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`,
data: { data: {
id: row.id id:this.$mk.toBigInt( row.id)
}, },
useBigInt: true, useBigInt: true,
}).then(a => { }).then(a => {
@ -463,7 +468,7 @@ export default {
this.$mk.post({ this.$mk.post({
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`, url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`,
data: { data: {
id: row.id id: this.$mk.toBigInt( row.id)
}, },
useBigInt: true, useBigInt: true,
}).then(a => { }).then(a => {
@ -478,7 +483,7 @@ export default {
this.$mk.post({ this.$mk.post({
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`, url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`,
data: { data: {
id: row.id id:this.$mk.toBigInt( row.id)
}, },
useBigInt: true, useBigInt: true,
}).then(a => { }).then(a => {