模具 完工人员类型
This commit is contained in:
parent
e552fe1655
commit
b4c8420cb4
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
|
||||
|
||||
<vxe-column field="complete_type" v-if="getDataId()" title="完工人员类型" width="160"
|
||||
<vxe-column field="complete_type" v-if="getDataId() && isDetails1Complete()" title="完工人员类型" width="160"
|
||||
:params="{ data: options_user_type }" formatter='formatEnum'></vxe-column>
|
||||
|
||||
<vxe-column field="remark" title="备注" width="160" :edit-render="{ name: '$input', props: {} }"></vxe-column>
|
||||
|
|
@ -365,6 +365,14 @@ export default {
|
|||
}, 500);
|
||||
},
|
||||
|
||||
isDetails1Complete() {
|
||||
for (let i = 0; i < this.detailsData.length; i++) {
|
||||
if (this.detailsData[i].is_complete) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
|
||||
pageIsComplete() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue