| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585 | <template>  <div class="rule-type">    <el-dialog      :title="id ? '编辑检查计划' : '新增检查计划'"      :visible.sync="isShow"      width="1500px"    >      <div class="page-body">        <el-form          :model="formData"          :rules="formDataRules"          size="small"          ref="form"          label-position="right"          label-width="130px"          label-prefix=":"        >          <el-row>            <el-col :span="6">              <el-form-item prop="planName" label="计划名称:">                <el-input                  v-model.trim="formData.planName"                  :maxlength="50"                  name="planName"                  placeholder="请输入"                  clearable                />              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item prop="checkType" label="检查类型:">                <el-select                  label="检查类型"                  v-model="formData.checkType"                  placeholder="请选择检查类型"                  clearable                >                  <el-option                    v-for="dict in dict.type.check_type"                    :key="dict.value"                    :label="dict.label"                    :value="dict.value"                  >                  </el-option>                </el-select>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item prop="planCycle" label="检查周期:">                <el-select                  prop="planCycle"                  label="检查周期"                  v-model="formData.planCycle"                  placeholder="请选择检查周期"                  clearable                >                  <el-option                    v-for="item in dict.type.check_cycle"                    :key="item.value"                    :label="item.label"                    :value="item.value"                  >                  </el-option>                </el-select>              </el-form-item>            </el-col>            <el-col :span="6" v-if="id ? false : true">              <el-form-item                prop="buildTaskNow"                label="立即生效:"                v-if="NowBuild()"              >                <el-checkbox                  v-model="formData.buildTaskNow"                  size="medium"                  @change="handleCheckboxChange"                  >默认从下个周期生成任务,<br>勾选后从当前周期立即生成任务</el-checkbox                >              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item                prop="startDate"                label="开始时间:"                v-if="formData.planCycle == 6"              >                <el-date-picker                  v-model="formData.startDate"                  style="width: 240px"                  value-format="yyyy-MM-dd hh:mm:ss"                  placeholder="请选择开始时间"                  type="date"                  :clearable="false"                ></el-date-picker>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item                prop="endDate"                label="结束时间:"                v-if="formData.planCycle == 6"              >                <el-date-picker                  v-model="formData.endDate"                  style="width: 240px"                  value-format="yyyy-MM-dd hh:mm:ss"                  placeholder="请选择结束时间"                  type="date"                  :clearable="false"                ></el-date-picker>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item prop="execOrgType" label="检查机构类型:">                <el-select                  @change="cleanExecOrgList"                  prop="execOrgType"                  label="检查机构类型"                  v-model="formData.execOrgType"                  placeholder="请选择检查机构类型"                  clearable                >                  <el-option                    v-for="item in dict.type.sys_org_type"                    :key="item.value"                    :label="item.label"                    :value="item.value"                  >                  </el-option>                </el-select>              </el-form-item>            </el-col>            <!-- </el-row> -->            <!-- <el-row> -->            <el-col :span="6">              <el-form-item prop="roleIds" label="检查角色:">                <el-select                  label="检查角色"                  v-model="formData.roleIds"                  placeholder="请选择检查角色"                  multiple                  filterable                  @change="handleRolesChange"                >                  <el-option                    v-for="item in planRoles"                    :key="item.id"                    :label="item.roleName"                    :value="item.id"                  >                  </el-option>                </el-select>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item prop="checkOrgType" label="受检机构类型:">                <el-select                  @change="cleanCheckOrgList"                  prop="checkOrgType"                  label="受检机构类型"                  v-model="formData.checkOrgType"                  placeholder="请选择受检机构类型"                  clearable                >                  <el-option                    v-for="item in dict.type.sys_org_type"                    :key="item.value"                    :label="item.label"                    :value="item.value"                  >                  </el-option>                </el-select>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item prop="count" label="检查次数:">                <el-input-number                  style="margin-left: 10px"                  v-model="formData.count"                  controls-position="right"                  @change="handleChange"                  :min="1"                  :max="10"                ></el-input-number>              </el-form-item>            </el-col>                     </el-row>          <el-row>            <el-col :span="6">              <el-form-item :span="6" prop="execOrgIds" label="检查机构">                <org-tree-select                  v-model="formData.execOrgIds"                  :queryData="parseInt(formData.execOrgType)"                  ref="execorgTreeSelect"                  :enabledCheckOrgTypes="parseInt(formData.execOrgType)"                  :disable="true"                >                </org-tree-select>              </el-form-item>            </el-col>            <el-col :span="6">              <el-form-item :span="6" prop="checkOrgIds" label="受检机构">                <org-tree-select                  v-model="formData.checkOrgIds"                  :queryData="parseInt(formData.checkOrgType)"                  ref="checkorgTreeSelect"                  :enabledCheckOrgTypes="parseInt(formData.checkOrgType)"                  :disable="true"                >                </org-tree-select>              </el-form-item>            </el-col>            <!-- <el-col :span="6"> -->            <!-- <el-form-item prop="planStatus" label="计划状态"> -->            <!-- <el-select                  label="计划状态"                  v-model="formData.planStatus"                  placeholder="请选择计划状态"                  clearable                >                  <el-option                    v-for="item in dict.type.check_status"                    :key="item.value"                    :label="item.label"                    :value="item.value"                  >                  </el-option>                </el-select> -->            <!-- <el-switch                  v-model="formData.planStatus"                  active-value="1"                  inactive-value="2"                ></el-switch> -->            <!-- </el-form-item> -->            <!-- </el-col> -->          </el-row>          <el-form-item :span="6" prop="description" label="备注">            <el-input              v-model="formData.description"              :maxlength="255"              clearable            />          </el-form-item>        </el-form>        <el-button @click="openSelect">新增检查内容</el-button>        <el-table :data="tableData" style="width: 100%" height="400px">          <el-table-column label="是否扫描">            <template v-slot="{ row }">              <el-switch                v-model="row.pointScan"                active-text="是"                inactive-text="否"              >              </el-switch>            </template>          </el-table-column>          <el-table-column label="必完成项">            <template v-slot="{ row }">              <el-switch                v-model="row.required"                active-text="是"                inactive-text="否"              >              </el-switch>            </template>          </el-table-column>          <el-table-column prop="ruleName" label="检查手册"> </el-table-column>          <el-table-column prop="itemName" label="检查项"> </el-table-column>          <el-table-column prop="pointName" label="检查内容"> </el-table-column>          <el-table-column prop="areaName" label="检查区域"> </el-table-column>          <el-table-column prop="businessType" label="数据来源">            <template slot-scope="r">              {{                getLabel(dict.type.point_data_source, `${r.row.businessType}`)              }}            </template>          </el-table-column>          <el-table-column prop="areaName" label="操作">            <template v-slot="{ row }">              <el-button type="text" @click="removeRow(row)">删除</el-button>            </template>          </el-table-column>        </el-table>      </div>      <div slot="footer" class="dialog-footer">        <el-button @click="onHide">取消</el-button>        <el-button type="primary" @click="onSubmit">确定</el-button>      </div>    </el-dialog>    <DialogSelect      ref="DialogSelect"      :defaultSelect="defaultSelect"      :orgType="formData.checkOrgType"      @select="onSelect"    ></DialogSelect>  </div></template><script>import OrgTreeSelect from "@/components/orgTreeSelect";import { mapGetters } from "vuex";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 { statusOptions } from "@/views/commonOption";import { findAllRole,findRoleByType } from "@/api/system/role";import { getLabel } from "@/views/commonOption";import DialogSelect from "@/views/safetycheck/ruleManager/dialog.select.point.vue";export default {  dicts: [    "sys_org_type",    "check_type",    "check_cycle",    "check_status",    "point_data_source",  ],  data() {    return {      defaultSelect: [],      selectedValues: [],      planRoles: [],      planName: null,      planType: null,      planCycle: null,      planStatus: null,      execOrgType: null,      roleNames: null,      planExec: null,      count: 0,      description: null,      propItem: "",      row: "",      tableData: [],      deptOptions: [],      id: null,      isShow: false,      formData: this.reset(),      formDataRules: {        planName: [{ required: true, message: "请输入计划名称" }],        checkType: [{ required: true, message: "请选择检查类型" }],        planCycle: [{ required: true, message: "请选择检查周期" }],        execOrgType: [{ required: true, message: "请选择检查机构类型" }],        roleList: [{ required: true, message: "请选择检查角色" }],        planExec: [{ required: true, message: "请选择计划时间" }],        count: [{ required: true, message: "请选择计划次数" }],        checkOrgType: [{ required: true, message: "请选择受检机构类型" }],        roleIds: [{ required: true, message: "请选择检查角色" }],      },      statusOptions: statusOptions,    };  },  props: {    orgTypeOptions: {      type: Array,    },    ruleTypeOptions: {      type: Array,    },  },  watch: {},  computed: {    ...mapGetters(["orgId", "orgName"]),  },  methods: {    NowBuild() {      if (this.formData.planCycle == 6) return false;      else return true;    },    getLabel(options, value) {      return getLabel(options, value);    },    cleanExecOrgList() {      this.execOrgIds = null;      this.formData.execOrgList = [];      this.formData.roleIds=[];      this.getRolesByOrg();    },    cleanCheckOrgList() {      this.checkOrgIds = null;      this.formData.checkOrgList = [];    },    tenantIdnormalizer(node, instanceId) {      if (node.children && !node.children.length) {        delete node.children;      }      return {        id: node.id,        label: node.name,        children: node.children,      };    },    handleCheckboxChange() {},    reset() {      return {        planName: null,        planType: null,        planCycle: null,        planStatus: null,        execOrgType: null,        roleNames: null,        count: null,        description: null,        tableData: null,        itemList: null,        planExec: null,        count: 0,        note: null,        planCreateOrgId: null,        planCreateOrgName: null,        roleList: null,        roleIds: null,        execOrg: null,        checkOrg: null,        buildTaskNow: false,        checkOrgList: [],        execOrgList: [],        rulePointList: null,        checkOrgIds: null,        execOrgIds: null,        rulePointIds: null,        checkOrgType: null,        checkType: null,        startDate: null,        endDate: null,      };    },    getRolesByOrg() {      // let params = {      //   orgType: null,      // };      findRoleByType(this.formData.execOrgType).then((res) => {        console.log(res,"res")        this.planRoles = res;      });    },    handleChange(value) {      this.count = value;    },    async refresh(id, other) {      if (id != null && id != undefined) {        await api.get(id).then((res) => {          this.formData = res.data;          this.formData.buildTaskNow;          this.tableData = res.data.rulePointList;          if (this.formData.execOrgType) {            this.formData.roleIds = this.formData.roleList.map(              (role) => role.id            );            this.formData.execOrgIds = this.formData.execOrgList.map(              (org) => org.id            );            this.formData.checkOrgIds = this.formData.checkOrgList.map(              (org) => org.id            );            this.getRolesByOrg();          }        });      } else {        this.formData.id = null;        this.formData.planName = null;        this.formData.planType = null;        this.formData.planCycle = null;        this.formData.planStatus = null;        this.formData.execOrgType = null;        this.formData.checkOrgType = null;        this.formData.checkType = null;        this.formData.roleNames = null;        this.formData.count = null;        this.formData.description = null;        this.formData.tableData = null;        this.formData.itemList = null;        this.formData.planExec = null;        this.formData.count = 0;        this.formData.note = null;        this.formData.planCreateOrgId = null;        this.formData.planCreateOrgName = null;        this.formData.roleList = null;        this.formData.roleIds = null;        this.formData.execOrg = null;        this.formData.checkOrg = null;        this.formData.buildTaskNow = false;        this.formData.checkOrgList = [];        this.formData.execOrgList = [];        this.formData.rulePointList = null;        this.formData.checkOrgIds = null;        this.formData.execOrgIds = null;        this.formData.rulePointIds = null;      }    },    onSelect(selectList) {      // console.log(selectList,"selectList");      for (let i = 0; i < selectList.length; i++) {        let tem = {          pointScan: selectList[i].pointScan,          required: !selectList[i].required,          ruleName: selectList[i].ruleName,          itemName: selectList[i].itemName,          pointName: selectList[i].pointName,          areaName: selectList[i].areaName,          itemId: selectList[i].itemId,          id: selectList[i].id,          businessType: selectList[i].businessType,        };        if (this.tableData == null) {          this.tableData = [];        }        this.tableData.push(tem);      }    },    async show(id, other = {}) {      this.id = id;      this.tableData = null;      this.formData.itemList = {};      await this.refresh(id, other);      this.getRolesByOrg();      this.isShow = true;    },    removeRow(row) {      this.tableData = this.tableData.filter((item) => item !== row);    },    // 事件    onHide() {      this.isShow = false;    },    getIteamF() {      // if (this.id == null) {      //   this.defaultSelect = [];      //   return;      // }else{      //   api.getPointIds(this.id).then((res) => {      //   this.defaultSelect = res.data;      // });      // }      if (!this.tableData) {        return [];      } else {        return this.tableData.map((d) => d.id);      }    },    openSelect() {      this.$refs.DialogSelect.show(this.getIteamF());    },    onSubmit() {      this.$refs.form.validate(async (isValidate) => {        this.formData.planCreateOrgId = this.orgId;        this.formData.planCreateOrgName = this.orgName;        this.formData.planStatus = 0;        if (!isValidate) return;        this.formData.rulePointList =          this.tableData == null ? [] : this.tableData;        this.formData.roleList = null;        this.formData.roleIds =          this.selectedValues.length == 0 ? null : this.selectedValues;        await api.add(this.formData);        this.$emit("success");        this.onHide();      });    },    handleRolesChange(val) {      this.selectedValues = val.toString().split(",");    },    // 事件    //apimark//  },  mounted() {},  components: { DialogSelect, orgDropDown, OrgTree, korgTree, OrgTreeSelect },};</script><style lang="scss" scoped>.brand_info {  .el-form {    width: 600px;    padding-top: 40px;  }}</style>
 |