From bf8f755535e07b59116fced6dab7e2b53e78ff50 Mon Sep 17 00:00:00 2001
From: 王震 <10952869+daywangzhen@user.noreply.gitee.com>
Date: 星期五, 22 十二月 2023 17:15:23 +0800
Subject: [PATCH] modified: src/views/common/qrCodeApp.vue modified: src/views/product/workbench/productInDialog.vue modified: src/views/quality/Packaging_ledger/index.vue modified: vue.config.js
---
src/views/plan/customerorder/schedule-table.vue | 11 ++++-------
1 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/src/views/plan/customerorder/schedule-table.vue b/src/views/plan/customerorder/schedule-table.vue
index 3780444..797dca8 100644
--- a/src/views/plan/customerorder/schedule-table.vue
+++ b/src/views/plan/customerorder/schedule-table.vue
@@ -85,14 +85,15 @@
width="170px"
>
<template scope="scope">
- <el-form-item
+ <el-form-item>{{ scope.row.qtyPlaned }}</el-form-item>
+ <!-- <el-form-item
:prop="'customer.' + scope.$index"
:rules="rules.qtyPlaned"
>
<el-input
v-model="scope.row.qtyPlaned"
placeholder=""
- ></el-input>
+ ></el-input> -->
</el-form-item>
</template>
</el-table-column>
@@ -222,17 +223,13 @@
this.dataForm.customer = []
const _that = this
customer.forEach((item) => {
- console.log(item);
+ item.qtyPlaned=item.buyQtyDue
const outPutBatchList = []
_that.$set(item, 'outPutBatchList', outPutBatchList)
customerList.push(item)
})
this.dataForm.customer = JSON.parse(JSON.stringify(customerList))
- console.log(this.dataForm.customer);
})
- this.dataForm.customer.forEach(item=>{
- item.remainderRequired=item.buyQtyDue
- })
},
dataFormSubmit() {
this.isSubmit = true
--
Gitblit v1.9.3