|
|
@@ -362,7 +362,7 @@
|
|
|
</el-checkbox>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="12">
|
|
|
+<!-- <el-col :span="12">
|
|
|
<el-form-item label="机构类型" prop="execOrgType">
|
|
|
<el-select
|
|
|
v-model="form.execOrgType"
|
|
|
@@ -378,7 +378,26 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ </el-col>-->
|
|
|
+
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="机构类型" prop="execOrgType">
|
|
|
+ <el-select
|
|
|
+ style="width: 100%"
|
|
|
+ v-model="form.execOrgType"
|
|
|
+ placeholder="请选择机构类型"
|
|
|
+ @change="execOrgTypeChanged()"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in getUserOrgType"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="parseInt(dict.value)"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
|
+
|
|
|
</el-row>
|
|
|
<!-- <el-row>
|
|
|
<el-col :span="12">
|
|
|
@@ -560,6 +579,18 @@ export default {
|
|
|
//this.initPlanRoleList();
|
|
|
this.orgId = this.$store.getters.orgId;
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ getUserOrgType() {
|
|
|
+ let tempArray = [];
|
|
|
+ this.dict.type.sys_org_type.forEach((x) => {
|
|
|
+ if (Number(x.value) >= this.$store.getters.orgType) {
|
|
|
+ tempArray.push(x);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // console.log("computed getUserOrgType",tempArry);
|
|
|
+ return tempArray;
|
|
|
+ },
|
|
|
+ },
|
|
|
methods: {
|
|
|
/** 查询预案演练计划列表 */
|
|
|
getList() {
|