Commit 9fb748aa authored by 何鹏程's avatar 何鹏程

完成其它功能

parent 11496ea9
...@@ -254,6 +254,7 @@ ...@@ -254,6 +254,7 @@
<el-radio-group <el-radio-group
class="radio-group-type2" class="radio-group-type2"
v-model="dataForm.vechieUseStatus" v-model="dataForm.vechieUseStatus"
@change="changeHandler"
> >
<el-radio :label="1">在用</el-radio> <el-radio :label="1">在用</el-radio>
<el-radio :label="2">闲置</el-radio> <el-radio :label="2">闲置</el-radio>
...@@ -565,6 +566,13 @@ export default { ...@@ -565,6 +566,13 @@ export default {
this.selectLoading = false; this.selectLoading = false;
}) })
}, },
changeHandler() {
if (this.dataForm.vechieUseStatus === 3) {
if (!this.dataForm.otherStatus) {
this.$set(this.dataForm, 'otherStatus', '注销,报废,查封,逾期未检验,达到报废标准公告牌证作废,违法未处理,转出,锁定')
}
}
}
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment