|
@@ -64,7 +64,7 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
- <el-row :gutter="20" type="flex" style="flex-wrap: wrap">
|
|
|
|
|
|
|
+ <el-row :gutter="20">
|
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
|
<el-form-item label="编码:">
|
|
<el-form-item label="编码:">
|
|
|
<el-input readonly v-model="orderInfo.productCode"></el-input>
|
|
<el-input readonly v-model="orderInfo.productCode"></el-input>
|
|
@@ -80,7 +80,7 @@
|
|
|
<el-input readonly v-model="orderInfo.contractNum"></el-input>
|
|
<el-input readonly v-model="orderInfo.contractNum"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
|
|
|
|
+ <el-col :span="6" v-if="produceType == 1">
|
|
|
<el-form-item label="未发总数:">
|
|
<el-form-item label="未发总数:">
|
|
|
<el-input
|
|
<el-input
|
|
|
readonly
|
|
readonly
|
|
@@ -88,8 +88,7 @@
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
|
|
- <el-row :gutter="20" type="flex" style="flex-wrap: wrap">
|
|
|
|
|
|
|
+
|
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
|
<el-form-item label="库存数量:">
|
|
<el-form-item label="库存数量:">
|
|
|
<el-input
|
|
<el-input
|
|
@@ -98,7 +97,7 @@
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
|
|
|
|
+ <el-col :span="6" v-if="produceType == 1">
|
|
|
<el-form-item label="在制总数:">
|
|
<el-form-item label="在制总数:">
|
|
|
<el-input
|
|
<el-input
|
|
|
readonly
|
|
readonly
|
|
@@ -106,7 +105,7 @@
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="6">
|
|
|
|
|
|
|
+ <el-col :span="6" v-if="produceType == 1">
|
|
|
<el-form-item label="最终缺料数量:">
|
|
<el-form-item label="最终缺料数量:">
|
|
|
<el-input
|
|
<el-input
|
|
|
readonly
|
|
readonly
|
|
@@ -117,6 +116,11 @@
|
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
|
<el-form-item label="最终状态:">
|
|
<el-form-item label="最终状态:">
|
|
|
<el-input
|
|
<el-input
|
|
|
|
|
+ :class="
|
|
|
|
|
+ kitComInfo.finalFilledShortState == '缺料'
|
|
|
|
|
+ ? 'statusRed'
|
|
|
|
|
+ : 'statusGreen'
|
|
|
|
|
+ "
|
|
|
readonly
|
|
readonly
|
|
|
v-model="kitComInfo.finalFilledShortState"
|
|
v-model="kitComInfo.finalFilledShortState"
|
|
|
></el-input>
|
|
></el-input>
|
|
@@ -969,11 +973,11 @@
|
|
|
},
|
|
},
|
|
|
// 结果数据处理
|
|
// 结果数据处理
|
|
|
resultProcess(result) {
|
|
resultProcess(result) {
|
|
|
- this.datasourceList=[]
|
|
|
|
|
|
|
+ this.datasourceList = [];
|
|
|
if (!result || result.length == 0) {
|
|
if (!result || result.length == 0) {
|
|
|
this.baseCount = '';
|
|
this.baseCount = '';
|
|
|
this.baseUnit = '';
|
|
this.baseUnit = '';
|
|
|
- this.datasourceAllList = []
|
|
|
|
|
|
|
+ this.datasourceAllList = [];
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
let first = result[0];
|
|
let first = result[0];
|
|
@@ -1123,10 +1127,16 @@
|
|
|
|
|
|
|
|
.statusRed {
|
|
.statusRed {
|
|
|
color: red;
|
|
color: red;
|
|
|
|
|
+ :deep(.el-input__inner) {
|
|
|
|
|
+ color: red;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.statusGreen {
|
|
.statusGreen {
|
|
|
color: green;
|
|
color: green;
|
|
|
|
|
+ :deep(.el-input__inner) {
|
|
|
|
|
+ color: green;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.left_tree {
|
|
.left_tree {
|