WXL
2024-06-05 f488fea65d0c0e96fb3e3c3ec835e4f324d11caa
src/views/repositoryai/templateku/index.vue
@@ -29,7 +29,7 @@
        >
          <span class="custom-tree-node" slot-scope="{ node, data }">
            <span>{{ node.label }}</span>
            <span>
            <span v-if="data.id > 0">
              <el-button
                type="text"
                icon="el-icon-delete"
@@ -37,6 +37,17 @@
                size="mini"
                @click="() => remove(node, data)"
              >
              </el-button>
            </span>
            <span v-if="data.id > 0">
              <el-button
                type="text"
                circle
                size="mini"
                @click="() => altertag(node, data)"
                ><span class="button-textxg"
                  ><i class="el-icon-edit-outline"></i
                ></span>
              </el-button>
            </span>
          </span>
@@ -337,11 +348,16 @@
      </div>
    </div>
    <!-- 添加类别弹框 -->
    <el-dialog title="新增类别" width="30%" :visible.sync="dialogFormVisible">
    <el-dialog
      :title="title"
      width="30%"
      :close-on-click-modal="false"
      :visible.sync="dialogFormVisible"
    >
      <div style="text-align: center; margin-bottom: 20px">
        <el-radio-group v-model="radio">
          <el-radio-button label="主分类"></el-radio-button>
          <el-radio-button label="子分类"></el-radio-button>
          <el-radio-button label="主分类" v-show="zifon"></el-radio-button>
          <el-radio-button label="子分类" v-show="zufon"></el-radio-button>
        </el-radio-group>
      </div>
      <el-divider></el-divider>
@@ -365,7 +381,7 @@
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogFormVisible = false">取 消</el-button>
        <el-button @click="getDeptTree()">取 消</el-button>
        <el-button type="primary" @click="submitsidecolumn">确 定</el-button>
      </div>
    </el-dialog>
@@ -427,6 +443,7 @@
  getFollowupclassify,
  delFollowupclassify,
  addFollowupclassify,
  editFollowupclassify,
  addtargetillness,
  getvFollowup,
  compileFollowup,
@@ -469,7 +486,7 @@
      // 表格数据
      userList: [],
      // 弹出层标题
      title: "",
      title: "新增类别",
      // 是否显示弹出层
      open: false,
      // 日期范围
@@ -500,6 +517,8 @@
      indexid: null,
      inputValue: "",
      radio: "主分类",
      zufon: true,
      zifon: true,
      inputVisible: false,
      illnessVisible: false, //指标疾病弹框
      deptOptions: [],
@@ -526,6 +545,8 @@
  created() {
    this.getList();
    this.getDeptTree();
    this.zufon = true;
    this.zifon = true;
    this.mode = store.getters.mode;
    this.languagelist = store.getters.languagelist;
    this.qyoptions = store.getters.usable;
@@ -543,7 +564,7 @@
        console.log(this.userList[0].campus.split(","));
      });
      listDept(this.queryParams).then((response) => {
      listDept({ pageNum: 1, pageSize: 10 }).then((response) => {
        this.deptList = this.handleTree(response.data, "deptId");
      });
    },
@@ -612,7 +633,7 @@
    handleAdd() {
      this.$router.push({
        path: "/knowledge/templateku/configurat/",
        query: { id: null },
        query: { id: null, assortid: this.queryParams.assortid },
      });
    },
@@ -641,12 +662,21 @@
    getDeptTree() {
      getFollowupclassify({}).then((res) => {
        this.deptOptions = res.rows;
        console.log(res);
        this.dialogFormVisible = false;
      });
    },
    // 添加类别树
    submitsidecolumn() {
      if (this.classifyform.id) {
        editFollowupclassify(this.classifyform).then((res) => {
          this.getDeptTree();
          this.$modal.msgSuccess("修改成功");
          this.classifyform = {};
          this.dialogFormVisible = false;
        });
        return;
      }
      let calssvalue = {};
      if (
        this.classifyform.pid &&
@@ -700,6 +730,20 @@
          .catch(() => {});
      }
    },
    altertag(a, b) {
      this.dialogFormVisible = true;
      if (!b.pid) {
        this.radio = "主分类";
        this.title="修改主分类";
        this.zufon = false;
      } else {
        this.radio = "子分类";
        this.title="修改子分类";
        this.zifon = false;
      }
      this.classifyform = b;
      this.dialogFormVisible = true;
    },
    // 筛选节点
    filterNode(value, data) {