Compare commits

..

No commits in common. "f9694f0466d35febf4b26a4cebdf96780d24ad1c" and "360277ea5b203187bfba661eac5f7f64e22a3cf0" have entirely different histories.

1 changed files with 0 additions and 7 deletions

View File

@ -116,7 +116,6 @@
<el-input-number <el-input-number
v-model="form.div_number" v-model="form.div_number"
:min="0" :min="0"
:disabled="divDisable"
style="width: 100%" style="width: 100%"
/> />
</el-form-item> </el-form-item>
@ -352,7 +351,6 @@ export default {
}, },
visible: false, visible: false,
isSaveing: false, isSaveing: false,
divDisable:false,
materialsIn: [], materialsIn: [],
materialsOut: [], materialsOut: [],
mgroups: [], mgroups: [],
@ -453,11 +451,6 @@ export default {
that.options.forEach((item) => { that.options.forEach((item) => {
if (item.id == that.form.process) { if (item.id == that.form.process) {
that.processName = item.name; that.processName = item.name;
if(item.mtype==20){
that.divDisable = false;
}else{
that.divDisable = true;
}
} }
}) })
}, },