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