From f488fea65d0c0e96fb3e3c3ec835e4f324d11caa Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期三, 05 六月 2024 17:48:22 +0800
Subject: [PATCH] 测试完成

---
 src/views/repositoryai/templateku/configurat/index.vue |   72 +++++++++++++++++++++++++++--------
 1 files changed, 55 insertions(+), 17 deletions(-)

diff --git a/src/views/repositoryai/templateku/configurat/index.vue b/src/views/repositoryai/templateku/configurat/index.vue
index bbacac3..4d9059c 100644
--- a/src/views/repositoryai/templateku/configurat/index.vue
+++ b/src/views/repositoryai/templateku/configurat/index.vue
@@ -546,7 +546,7 @@
                           </el-input> </el-form-item
                       ></el-col>
                     </el-row>
-                    <el-row :gutter="10">
+                    <!-- <el-row :gutter="10">
                       <el-col :span="12"
                         ><el-form-item label="澶勭悊">
                           <el-input
@@ -558,7 +558,7 @@
                           >
                           </el-input> </el-form-item
                       ></el-col>
-                    </el-row>
+                    </el-row> -->
 
                     <el-row :gutter="10">
                       <el-col :span="16">
@@ -593,7 +593,7 @@
                           </el-input> </el-form-item
                       ></el-col>
                     </el-row>
-                    <el-row :gutter="10">
+                    <!-- <el-row :gutter="10">
                       <el-col :span="12"
                         ><el-form-item label="澶勭悊">
                           <el-input
@@ -605,7 +605,7 @@
                           >
                           </el-input> </el-form-item
                       ></el-col>
-                    </el-row>
+                    </el-row> -->
 
                     <el-row :gutter="10">
                       <el-col :span="16">
@@ -640,7 +640,7 @@
                           </el-input> </el-form-item
                       ></el-col>
                     </el-row>
-                    <el-row :gutter="10">
+                    <!-- <el-row :gutter="10">
                       <el-col :span="12"
                         ><el-form-item label="澶勭悊">
                           <el-input
@@ -652,7 +652,7 @@
                           >
                           </el-input> </el-form-item
                       ></el-col>
-                    </el-row>
+                    </el-row> -->
 
                     <el-row :gutter="10">
                       <el-col :span="16">
@@ -756,7 +756,7 @@
       title="娣诲姞棰樼洰"
       :visible.sync="drawer"
       custom-class="demo-drawer"
-      width="50%"
+      size="50%"
     >
       <div class="preview-left">
         <el-form
@@ -820,6 +820,12 @@
             </template>
           </el-table-column>
         </el-table>
+        <pagination
+          :total="total"
+          :page.sync="queryParams.pageNum"
+          :limit.sync="queryParams.pageSize"
+          @pagination="getaddtopiclist"
+        />
       </div>
     </el-drawer>
   </div>
@@ -867,11 +873,18 @@
       indexAssortlist: [],
       inputValue: "",
       inputValueillness: "",
-      topicobj: {},
+      topicobj: {
+        noMatchText: "",
+        noClearlyText: "",
+        slienceText: "",
+      },
       total: 1,
       id: "",
       ruleForm: {
         templateName: "",
+        ivrLibaTemplateTagList: [],
+        ivrLibaTemplateScriptVOList: [],
+        tempDetpRelevances: [],
       },
       rules: {},
       optionstag: [],
@@ -961,6 +974,7 @@
     this.courtyardlist = store.getters.courtyardlist;
     this.precedencetype = store.getters.precedencetype;
   },
+  mounted() {},
 
   methods: {
     //鍏叡鏂规硶--------------------
@@ -974,17 +988,18 @@
     RoutingDataProcessing() {
       this.id = this.$route.query.id;
       this.task = this.$route.query.task;
-      console.log(this.task, "task");
-      if (this.task) {
-        this.id = this.$route.query.id;
-      }
+
+      // console.log(this.task, "task");
+      // if (this.task) {
+      //   this.id = this.$route.query.id;
+      // }
     },
     // 鑾峰彇琛ㄥ崟鏁版嵁
     getvFollowup() {
       getvFollowup({ id: this.id }).then((res) => {
-        if (res == 200 && res.data) {
+        if (res.code == 200 && this.id) {
+          console.log(2211);
           this.ruleForm = res.data;
-
           this.tempDetpRelevanceslist = JSON.parse(this.ruleForm.deptNames);
           this.ruleForm.suitway = this.ruleForm.suitway.split(",");
           this.ruleForm.campus = this.ruleForm.campus.split(",");
@@ -1007,9 +1022,11 @@
       }).then((response) => {
         this.optionsillness = response.rows;
       });
-      getillness({ outid: this.id, type: 3 }).then((res) => {
-        this.illnesslist = res.rows;
-      });
+      if (this.id) {
+        getillness({ outid: this.id, type: 3 }).then((res) => {
+          this.illnesslist = res.rows;
+        });
+      }
       listDept(this.queryParams).then((response) => {
         this.deptList = this.handleTree(response.data, "deptId");
       });
@@ -1019,6 +1036,18 @@
       // 鍒嗙被
       getFollowupclassify({}).then((res) => {
         this.indexAssortlist = res.rows;
+        this.ruleForm.assortid = Number(this.$route.query.assortid);
+      });
+      // 绉戝
+      listDept(this.queryParams).then((response) => {
+        this.deptList = this.handleTree(response.data, "deptId");
+      });
+      // 鐤剧梾
+      getillnesslist({
+        pageNum: 1,
+        pageSize: 100,
+      }).then((response) => {
+        this.optionsillness = response.rows;
       });
       getgenerallist({
         pageNum: 1,
@@ -1221,6 +1250,14 @@
     },
     addtopic(row) {
       console.log(row);
+      if (
+        this.ruleForm.ivrLibaTemplateScriptVOList.some(
+          (obj) => obj.questiontitle == row.questiontitle
+        )
+      ) {
+        this.$modal.msgError("璇ラ鐩凡瀛樺湪");
+        return;
+      }
       getverbaltrick({ id: row.id }).then((res) => {
         console.log(res, "璇︽儏");
         res.data.isoperation = 1;
@@ -1230,6 +1267,7 @@
         });
         this.ruleForm.ivrLibaTemplateScriptVOList.push(res.data);
         this.sortFn();
+        this.$modal.msgSuccess("娣诲姞鎴愬姛");
       });
     },
     handleDelete(row) {

--
Gitblit v1.9.3