fix:工改加工前不良对应字段
This commit is contained in:
parent
b0777bdb12
commit
8ee097af9a
|
@ -94,7 +94,7 @@
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="领用数量" prop="count_use">
|
<el-table-column label="领用数量" prop="count_use">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="加工前不良" prop="count_n_jgqbl">
|
<el-table-column label="加工前不良" prop="count_pn_jgqbl">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="创建时间"
|
label="创建时间"
|
||||||
|
@ -149,9 +149,9 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="23">
|
<el-col :span="23">
|
||||||
<el-form-item label="加工前不良" prop="count_n_jgqbl">
|
<el-form-item label="加工前不良" prop="count_pn_jgqbl">
|
||||||
<el-input-number
|
<el-input-number
|
||||||
v-model="saveInForm.count_n_jgqbl"
|
v-model="saveInForm.count_pn_jgqbl"
|
||||||
:min="0"
|
:min="0"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
controls-position="right"
|
controls-position="right"
|
||||||
|
@ -420,7 +420,7 @@ export default {
|
||||||
mlogItem: {},
|
mlogItem: {},
|
||||||
saveInForm: {
|
saveInForm: {
|
||||||
count_use: 0,
|
count_use: 0,
|
||||||
count_n_jgqbl: 0,
|
count_pn_jgqbl: 0,
|
||||||
},
|
},
|
||||||
oinfo_json:{
|
oinfo_json:{
|
||||||
退火炉号:'',
|
退火炉号:'',
|
||||||
|
@ -505,7 +505,7 @@ export default {
|
||||||
that.isSaveing = true;
|
that.isSaveing = true;
|
||||||
let obj = {};
|
let obj = {};
|
||||||
obj.count_use = that.saveInForm.count_use;
|
obj.count_use = that.saveInForm.count_use;
|
||||||
obj.count_n_jgqbl = that.saveInForm.count_n_jgqbl;
|
obj.count_pn_jgqbl = that.saveInForm.count_pn_jgqbl;
|
||||||
that.$API.wpm.mlogb.updateIn
|
that.$API.wpm.mlogb.updateIn
|
||||||
.req(that.saveInForm.id, obj)
|
.req(that.saveInForm.id, obj)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
Loading…
Reference in New Issue