Commit 9f170003 authored by 王晓倩's avatar 王晓倩

企业审核修改监管分类

parent 1b48541a
...@@ -95,8 +95,8 @@ ...@@ -95,8 +95,8 @@
</el-col> </el-col>
</el-row> </el-row>
</el-form-item> </el-form-item>
<el-form-item label="监管分类" prop="regulationType"> <el-form-item label="监管分类" prop="regulationBigType">
<el-select v-model="editForm.regulationType" placeholder="请选择" @change="seletChange" filterable> <el-select v-model="editForm.regulationBigType" placeholder="请选择" @change="seletChange" filterable>
<el-option <el-option
v-for="item in regulationTypeArr" v-for="item in regulationTypeArr"
:key="item.code" :key="item.code"
...@@ -213,7 +213,8 @@ export default class EnterprisesMgEdit extends Vue { ...@@ -213,7 +213,8 @@ export default class EnterprisesMgEdit extends Vue {
latitude: that.editForm.latitude, latitude: that.editForm.latitude,
longitude: that.editForm.longitude, longitude: that.editForm.longitude,
remarks: that.editForm.remarks, remarks: that.editForm.remarks,
boundary: that.editForm.boundary boundary: that.editForm.boundary,
regulationBigType: that.editForm.regulationBigType
}, },
function (res: any) { function (res: any) {
if (res.code == 0) { if (res.code == 0) {
...@@ -271,6 +272,11 @@ export default class EnterprisesMgEdit extends Vue { ...@@ -271,6 +272,11 @@ export default class EnterprisesMgEdit extends Vue {
trigger: "blur,change", trigger: "blur,change",
message: "该项为必填项!" message: "该项为必填项!"
}], }],
regulationBigType: [{
required: true,
trigger: "blur,change",
message: "该项为必填项!"
}]
} }
} }
if (v == 4) { if (v == 4) {
...@@ -284,6 +290,11 @@ export default class EnterprisesMgEdit extends Vue { ...@@ -284,6 +290,11 @@ export default class EnterprisesMgEdit extends Vue {
required: true, required: true,
trigger: "blur", trigger: "blur",
message: "该项为必填项!" message: "该项为必填项!"
}],
regulationBigType: [{
required: true,
trigger: "blur,change",
message: "该项为必填项!"
}] }]
} }
} }
......
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