fix:光芯mlog日志问题修改
This commit is contained in:
parent
f68a2e1b7f
commit
f749fc14f0
|
@ -214,6 +214,8 @@
|
|||
</sc-upload-file>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :md="8" :sm="12" :xs="24" v-for="item in testitems" :key="item.id">
|
||||
<el-form-item :label="item.name">
|
||||
<el-input-number
|
||||
|
@ -269,6 +271,8 @@
|
|||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :md="12" :sm="24">
|
||||
<el-form-item label="备注">
|
||||
<el-input
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
:labelField="'batch'"
|
||||
style="width: 100%;"
|
||||
:params = "paramsM"
|
||||
@change="materialBatchChange"
|
||||
>
|
||||
<!-- :params = "{type__in: '10,20',is_hidden: false}" -->
|
||||
<el-table-column label="物料" prop="full_name">
|
||||
|
@ -385,15 +386,20 @@ export default {
|
|||
},
|
||||
materialBatchChange(){
|
||||
let that = this;
|
||||
that.materialOptions.forEach(item => {
|
||||
if(item.id==that.form.wm_in){
|
||||
that.form.batch = item.batch;
|
||||
that.form.count_use = item.count;
|
||||
that.batch_count = item.count;
|
||||
that.materialFix = item.material;
|
||||
that.getdefects();
|
||||
}
|
||||
});
|
||||
that.form.batch = that.selectObj.batch;
|
||||
that.form.count_use = that.selectObj.count;
|
||||
that.batch_count = that.selectObj.count;
|
||||
that.materialFix = that.selectObj.material;
|
||||
that.getdefects();
|
||||
// that.materialOptions.forEach(item => {
|
||||
// if(item.id==that.form.wm_in){
|
||||
// that.form.batch = item.batch;
|
||||
// that.form.count_use = item.count;
|
||||
// that.batch_count = item.count;
|
||||
// that.materialFix = item.material;
|
||||
// that.getdefects();
|
||||
// }
|
||||
// });
|
||||
},
|
||||
//添加层组
|
||||
cellsAdd(){
|
||||
|
|
Loading…
Reference in New Issue