技术标准发布
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="制修订类型" prop="reviseStatus" class="add-form-item form-item-disabled" >
|
||||
<el-select v-model="form.reviseStatus" filterable>
|
||||
<el-select v-model="form.reviseStatus" filterable @change="reveseStatusChange">
|
||||
<el-option
|
||||
v-for="item in opinionsStand"
|
||||
:key="item.value"
|
||||
@@ -1076,6 +1076,9 @@ export default {
|
||||
})
|
||||
})
|
||||
},
|
||||
reveseStatusChange(val){
|
||||
this.$emit('reveseStatusChange',val)
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
if(this.formSub && this.formSub.standSort && this.formSub.standSort !== ''){
|
||||
@@ -1114,11 +1117,11 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
'form.reviseStatus':{
|
||||
handler(val) {
|
||||
this.$emit('reveseStatusChange',val)
|
||||
}
|
||||
}
|
||||
// 'form.reviseStatus':{
|
||||
// handler(val) {
|
||||
// this.$emit('reveseStatusChange',val)
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -1171,9 +1171,9 @@
|
||||
methods: {
|
||||
reveseStatusChange(val){
|
||||
if(val === '1'){
|
||||
this.form.standNum = this.maxStandnSn
|
||||
this.form.standNum = this.maxStandnSn || ''
|
||||
}else{
|
||||
this.form.standNum = this.form.standSn
|
||||
this.form.standNum = this.form.standSn || ''
|
||||
}
|
||||
},
|
||||
standSortChange(val){
|
||||
|
||||
Reference in New Issue
Block a user