入库流程调整

This commit is contained in:
shenyanpei
2022-01-14 13:23:01 +08:00
parent a072178f84
commit e3d7a83043
2 changed files with 5 additions and 9 deletions
@@ -1715,8 +1715,9 @@ export default {
filterText(val) {
this.$refs.tree.filter(val);
},
'form.standInData' : {
'form' : {
handler: function () {
console.log(this.form.standInData)
if(this.form.standInData === '1') {
this.rules.standYear[0].required = false;
this.rules.standName[0].required = false
@@ -44,7 +44,7 @@
</el-form-item>
<el-form-item v-show="form.standInData === '0'" label="标准类别" prop="standSort" class="add-form-item form-item-disabled">
<el-form-item label="标准类别" prop="standSort" class="add-form-item form-item-disabled">
<el-select v-model="form.standSort" filterable placeholder="请选择标准类别">
<el-option
v-for="item in standSortOptions"
@@ -127,7 +127,7 @@
</el-radio-group>
<el-button @click="form.isRelateAccess = ''" v-show="form.isRelateAccess !== null>0" size="mini" type="primary" circle icon="el-icon-close" style="margin-left: 10px;margin-bottom: 3px"></el-button>
</el-form-item>
<el-form-item label="标准体系" prop="standSystem" class="add-form-item form-item-disabled">
<el-form-item v-show="form.standInData=='0'" label="标准体系" prop="standSystem" class="add-form-item form-item-disabled">
<el-input v-model="form.standSystem" placeholder="选择标准体系" @click.native="choiceZRR1('standSystem', '标准体系', form.standSystem)"></el-input>
<tree-select-new
:key="key"
@@ -2661,7 +2661,7 @@ export default {
}
}
},
'form.standInData' : {
'form' : {
handler: function () {
if(this.form.standInData === '1') {
this.rules.standYear[0].required = false;
@@ -2672,11 +2672,6 @@ export default {
}
}
},
form(val){
if(this.form){
}
}
}
}
</script>