|  | @@ -114,6 +114,7 @@
 | 
											
												
													
														|  |                    v-model="formData.checkOrgType"
 |  |                    v-model="formData.checkOrgType"
 | 
											
												
													
														|  |                    placeholder="请选择受检机构类型"
 |  |                    placeholder="请选择受检机构类型"
 | 
											
												
													
														|  |                    clearable
 |  |                    clearable
 | 
											
												
													
														|  | 
 |  | +                  
 | 
											
												
													
														|  |                  >
 |  |                  >
 | 
											
												
													
														|  |                    <el-option
 |  |                    <el-option
 | 
											
												
													
														|  |                      v-for="item in dict.type.sys_org_type"
 |  |                      v-for="item in dict.type.sys_org_type"
 | 
											
										
											
												
													
														|  | @@ -172,6 +173,7 @@
 | 
											
												
													
														|  |                  <orgDropDown
 |  |                  <orgDropDown
 | 
											
												
													
														|  |                    v-model="formData.execOrg"
 |  |                    v-model="formData.execOrg"
 | 
											
												
													
														|  |                    placeholder="选择检查机构"
 |  |                    placeholder="选择检查机构"
 | 
											
												
													
														|  | 
 |  | +                  multiple
 | 
											
												
													
														|  |                    @select="onexecOrgSelect"
 |  |                    @select="onexecOrgSelect"
 | 
											
												
													
														|  |                  />
 |  |                  />
 | 
											
												
													
														|  |                </el-form-item>
 |  |                </el-form-item>
 | 
											
										
											
												
													
														|  | @@ -248,6 +250,8 @@
 | 
											
												
													
														|  |  <script>
 |  |  <script>
 | 
											
												
													
														|  |  import { mapGetters } from "vuex";
 |  |  import { mapGetters } from "vuex";
 | 
											
												
													
														|  |  import orgDropDown from "@/components/orgTree/orgDropDown.vue";
 |  |  import orgDropDown from "@/components/orgTree/orgDropDown.vue";
 | 
											
												
													
														|  | 
 |  | +import OrgTree from "@/components/orgTree";
 | 
											
												
													
														|  | 
 |  | +import korgTree from "@/components/k-orgTree";
 | 
											
												
													
														|  |  import * as api from "@/api/safetycheck/plan";
 |  |  import * as api from "@/api/safetycheck/plan";
 | 
											
												
													
														|  |  import { statusOptions } from "@/views/commonOption";
 |  |  import { statusOptions } from "@/views/commonOption";
 | 
											
												
													
														|  |  import { findAllRole } from "@/api/system/role";
 |  |  import { findAllRole } from "@/api/system/role";
 | 
											
										
											
												
													
														|  | @@ -343,7 +347,7 @@ export default {
 | 
											
												
													
														|  |        this.formData.buildTaskNow = !this.formData.buildTaskNow;
 |  |        this.formData.buildTaskNow = !this.formData.buildTaskNow;
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      onexecOrgSelect(node) {
 |  |      onexecOrgSelect(node) {
 | 
											
												
													
														|  | -      this.formData.execOrg = node.id;
 |  | 
 | 
											
												
													
														|  | 
 |  | +      this.formData.execOrgIds = node.val;
 | 
											
												
													
														|  |        console.log(node, "onexecOrgSelect");
 |  |        console.log(node, "onexecOrgSelect");
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      oncheckOrgSelect(node) {
 |  |      oncheckOrgSelect(node) {
 | 
											
										
											
												
													
														|  | @@ -372,6 +376,12 @@ export default {
 | 
											
												
													
														|  |          execOrg: null,
 |  |          execOrg: null,
 | 
											
												
													
														|  |          checkOrg: null,
 |  |          checkOrg: null,
 | 
											
												
													
														|  |          buildTaskNow: false,
 |  |          buildTaskNow: false,
 | 
											
												
													
														|  | 
 |  | +        checkOrgList:null,
 | 
											
												
													
														|  | 
 |  | +        execOrgList:null,
 | 
											
												
													
														|  | 
 |  | +        rulePointList:null,
 | 
											
												
													
														|  | 
 |  | +        checkOrgIds:null,
 | 
											
												
													
														|  | 
 |  | +        execOrgIds:null,
 | 
											
												
													
														|  | 
 |  | +        rulePointIds:null,
 | 
											
												
													
														|  |        };
 |  |        };
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      getRolesByOrg() {
 |  |      getRolesByOrg() {
 | 
											
										
											
												
													
														|  | @@ -482,7 +492,7 @@ export default {
 | 
											
												
													
														|  |      //apimark//
 |  |      //apimark//
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    mounted() {},
 |  |    mounted() {},
 | 
											
												
													
														|  | -  components: { DialogSelect, orgDropDown },
 |  | 
 | 
											
												
													
														|  | 
 |  | +  components: { DialogSelect, orgDropDown,OrgTree,korgTree },
 | 
											
												
													
														|  |  };
 |  |  };
 | 
											
												
													
														|  |  </script>
 |  |  </script>
 | 
											
												
													
														|  |  
 |  |  
 |