|
|
@@ -42,12 +42,12 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
|
|
|
- <el-form-item prop="orgType" label="检查机构类型:">
|
|
|
+ <el-form-item prop="orgType" label="受检机构类型:">
|
|
|
<el-select
|
|
|
prop="orgType"
|
|
|
- label="检查机构类型"
|
|
|
+ label="受检机构类型"
|
|
|
v-model="formData.orgType"
|
|
|
- placeholder="请选择检查机构类型"
|
|
|
+ placeholder="请选择受检机构类型"
|
|
|
clearable
|
|
|
>
|
|
|
<el-option
|
|
|
@@ -93,7 +93,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
|
-import * as api from "@/api/resumption/rule";
|
|
|
+import * as api from "@/api/safetycheck/rule";
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
|
@@ -104,7 +104,7 @@ export default {
|
|
|
formDataRules: {
|
|
|
name: [{ required: true, message: "请输入检查内容库名称" }],
|
|
|
type: [{ required: true, message: "请选择检查类型" }],
|
|
|
- orgType: [{ required: true, message: "请选择检查机构类型" }],
|
|
|
+ orgType: [{ required: true, message: "请选择受检机构类型" }],
|
|
|
status: [{ required: true, message: "请选择状态" }],
|
|
|
},
|
|
|
};
|