From d27e3ada8f1e9c005747988e9bf2519fcd6da21a Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期一, 09 九月 2024 12:45:44 +0800
Subject: [PATCH] 测试完成

---
 src/views/outsideChainwt.vue |  113 ++++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 89 insertions(+), 24 deletions(-)

diff --git a/src/views/outsideChainwt.vue b/src/views/outsideChainwt.vue
index 2215dc2..99b818c 100644
--- a/src/views/outsideChainwt.vue
+++ b/src/views/outsideChainwt.vue
@@ -1,6 +1,6 @@
 <template>
   <div class="questionnaire">
-    <div class="CONTENT">
+    <div class="CONTENT" v-if="!accomplish">
       <div class="title">{{ taskname ? taskname : "闂嵎" }}</div>
       <div class="preview-left">
         <!-- 鍗曢�� -->
@@ -14,7 +14,10 @@
               {{ index + 1 }}銆乕鍗曢�塢<span>{{ item.scriptContent }}</span>
             </div>
             <div class="dev-xx">
-              <el-radio-group v-model="item.scriptResult" @change="handleOptionChange($event, index, item)">
+              <el-radio-group
+                v-model="item.scriptResult"
+                @change="handleOptionChange($event, index, item)"
+              >
                 <el-radio
                   v-for="(items, index) in item.svyLibTemplateTargetoptions"
                   :key="index"
@@ -23,6 +26,9 @@
                 >
               </el-radio-group>
             </div>
+            <div v-show="item.prompt">
+              <el-alert :title="item.prompt" type="warning"> </el-alert>
+            </div>
           </div>
           <!-- 澶氶�� -->
           <div class="scriptTopic-dev" :key="index" v-if="item.scriptType == 2">
@@ -30,7 +36,10 @@
               {{ index + 1 }}銆乕澶氶�塢<span>{{ item.scriptContent }}</span>
             </div>
             <div class="dev-xx">
-              <el-checkbox-group v-model="item.scriptResult">
+              <el-checkbox-group
+                v-model="item.scriptResult"
+                @change="updateScore($event, index, item)"
+              >
                 <el-checkbox
                   @change="$forceUpdate()"
                   v-for="(items, indexs) in item.svyLibTemplateTargetoptions"
@@ -40,6 +49,9 @@
                   {{ items.optioncontent }}
                 </el-checkbox>
               </el-checkbox-group>
+            </div>
+            <div v-show="item.prompt && item.scriptResult[0]">
+              <el-alert :title="item.prompt" type="warning"> </el-alert>
             </div>
           </div>
           <!-- 濉┖ -->
@@ -63,10 +75,24 @@
       <el-form :model="formData" label-width="80px">
         <el-form-item>
           <el-button type="primary" @click="cache(true)">鎻愪氦闂嵎</el-button>
-          <el-button type="primary" @click="cache">缂撳瓨闂嵎</el-button>
+          <!-- <el-button type="primary" @click="cache">缂撳瓨闂嵎</el-button> -->
         </el-form-item>
       </el-form>
     </div>
+    <div class="CONTENT" v-else>
+      <div class="preview-left" style="margin-top: 100px;">
+        <div style="font-size: 24px;color: #175997; font-weight: 600; margin-bottom: 10px;">鎰熻阿鎮ㄧ殑閰嶅悎!</div>
+        <div style="font-size: 20px;">閭eソ鐨勶紝鎮ㄨ鐨勮繖浜涙儏鍐垫垜閮借涓嬫潵浜嗭紝鎮ㄨ繖杈硅寰楄鎸夌収鍖荤敓璇寸殑澶嶈瘖鏃堕棿鏉ラ櫌澶嶆煡銆傚缓璁偍鍚堢悊钀ュ吇锛岄ギ椋熸竻娣★紝澶氬悆瀵屽惈绾ょ淮绱犵殑椋熺墿锛岄伩鍏嶈緵杈e埡婵�鎬ч鐗╋紝閫傚害鐨勫悍澶嶉敾鐐硷紝濡傛暎姝ャ�佽笣娉佃繍鍔ㄧ瓑锛岄闃茶鏍撳舰鎴愩�傚鏋滄湁浠讳綍涓嶉�傛垨鐤戦棶锛屼篃璇烽殢鏃朵笌鎴戜滑鑱旂郴銆傞偅鏈鍥炶鍒版缁撴潫锛岀鎮ㄨ韩浣撳仴搴凤紒</div>
+      </div>
+    </div>
+    <el-dialog
+      :visible.sync="dialogVisible"
+      width="50%"
+    >
+      <div>
+        <el-alert :title="revisitAfter" type="success"> </el-alert>
+      </div>
+    </el-dialog>
   </div>
 </template>
 
@@ -84,6 +110,10 @@
       taskid: 355,
       patid: 265823,
       questionList: null,
+      revisitAfter: null,
+      dialogVisible:false,
+      Endornot: true,
+      accomplish:true,
       // 鍓嶇鍏挜
       publicKey:
         "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKR0yHv0rbJWQE+Sc7/FwpW66qMd9qX2k6z+SDgkSdxWh/1GbBoAP7bDQQRF6vXmoKsD2ya42H6XRLSDXAoayuMCAwEAAQ== ",
@@ -97,7 +127,12 @@
       },
     };
   },
-
+  mounted() {
+    window.addEventListener("beforeunload", this.cache);
+  },
+  beforeDestroy() {
+    window.removeEventListener("beforeunload", this.cache);
+  },
   created() {
     this.getQuestionnaire();
   },
@@ -113,22 +148,20 @@
       //   "CVk0j8O86AeCqhV5WPsBBYDg9fec0wDoDlP9imYK4wDBNIkxywZzMJEGlPagOxnq6qr2WYZo0U8MUGWRGnq8ZA==";
       // this.taskid = this.decrypt(taskid);
       // this.patid = this.decrypt(patid);
-
-      // this.$modal.msgSuccess("鐢ㄦ埛id涓�" + this.patid);
-      // this.$modal.msgSuccess("浠诲姟id涓�" + this.taskid);
       // let taskids = this.encrypt(this.taskid);
       // let patids = this.encrypt(this.patid);
-      console.log(this.$route.query.param1);
-      console.log(this.$route.query.param2);
       // 鍏堝彇缂撳瓨
       getCachequestionnaire({ param1: this.taskid, param2: this.patid }).then(
         (res) => {
           if (res.code == 200) {
             this.questionList = res.data;
+            this.accomplish=res.data.submit
             if (this.questionList[0]) {
               this.questionList.forEach((item) => {
-                if (item.scriptResult) {
+                if (item.scriptResult && item.scriptType != 2) {
                   item.scriptResult = JSON.parse(item.scriptResult);
+                } else if (item.scriptResult && item.scriptType == 2) {
+                  item.scriptResult = item.scriptResult.split("&");
                 }
               });
               return;
@@ -146,7 +179,8 @@
       getExternalfollowup({ param1: this.taskid, param2: this.patid }).then(
         (res) => {
           if (res.code == 200) {
-            this.questionList = res.rows;
+            this.questionList = res.data.script;
+            this.revisitAfter = res.data.revisitAfter;
             // 澶勭悊棰樼洰鏀堕泦缁撴灉鏍煎紡
             this.questionList.forEach((item) => {
               item.nextScriptno = Number(item.nextScriptno);
@@ -158,14 +192,12 @@
         }
       );
     },
-
     // 鍔犲瘑鍑芥暟
     encrypt(txt) {
       const encryptor = new JSEncrypt();
       encryptor.setPublicKey(this.publicKey); // 璁剧疆鍏挜
       return encryptor.encrypt(txt); // 瀵规暟鎹繘琛屽姞瀵�
     },
-
     // 瑙e瘑鍑芥暟
     decrypt(txt) {
       const encryptor = new JSEncrypt();
@@ -181,22 +213,25 @@
         serviceSubtaskDetailList: [],
       };
       const arr = structuredClone(this.questionList);
-      arr.forEach((item) => {
-        item.asrtext = JSON.stringify(item.scriptResult);
-        if (item.scriptType == 2 && item.scriptResult[0]) {
-          item.asrtext = item.scriptResult.join("&");
-        }
-      });
+      // arr.forEach((item) => {
+      //   item.asrtext = JSON.stringify(item.scriptResult);
+      //   if (item.scriptType == 2 && item.scriptResult[0]) {
+      //     item.scriptResult = item.scriptResult.join("&");
+      //   }
+      // });
       form.serviceSubtaskDetailList = arr;
       Submitaquestionnaire(form).then((res) => {
         if (res.code == 200) {
+          if (this.revisitAfter) {
+            this.dialogVisible=true
+          }
           this.$modal.msgSuccess("鎻愪氦鎴愬姛");
         }
       });
-      // 鍙互灏嗘暟鎹彁浜ゅ埌鍚庣鎴栬�呰繘琛屽叾浠栧鐞�
     },
     // 缂撳瓨
     cache(subm) {
+      console.log("杩涘叆缂撳瓨");
       let form = {
         param1: this.taskid,
         param2: this.patid,
@@ -204,7 +239,11 @@
       };
       const arr = structuredClone(this.questionList);
       arr.forEach((item) => {
-        item.scriptResult = JSON.stringify(item.scriptResult);
+        if (item.scriptType == 2 && item.scriptResult[0]) {
+          item.scriptResult = item.scriptResult.join("&");
+        } else if (item.scriptType != 2 && item.scriptResult) {
+          item.scriptResult = JSON.stringify(item.scriptResult);
+        }
       });
       form.svyLibTemplateScriptVOS = arr;
       Cachequestionnaire(form).then((res) => {
@@ -216,8 +255,8 @@
         }
       });
     },
-    // 澶勭悊閫夐」
-    handleOptionChange(selectedvalue, index,arr) {
+    // 澶勭悊鍗曢�夐�夐」
+    handleOptionChange(selectedvalue, index, arr) {
       // 鏌ユ壘閫変腑鐨勯�夐」瀵硅薄
       const selectedOption = arr.svyLibTemplateTargetoptions.find(
         (option) => option.optioncontent == selectedvalue
@@ -225,7 +264,23 @@
       if (selectedOption) {
         // 灏嗛�変腑鐨勯�夐」瀵硅薄鐨� id 璧嬪�肩粰 obj.sonId
         this.questionList[index].nextScriptno = selectedOption.nextQuestion;
+        this.questionList[index].score = selectedOption.score;
+        this.questionList[index].prompt = selectedOption.prompt;
       }
+    },
+    // 澶勭悊澶氶�夐�夐」
+    updateScore(selectedvalues, index, arr) {
+      // 锟斤拷鍔犲垎鏁�
+      let score = 0;
+      selectedvalues.forEach((value) => {
+        const selectedOption = arr.svyLibTemplateTargetoptions.find(
+          (option) => option.optioncontent == value
+        );
+        if (selectedOption) {
+          score += Number(selectedOption.score);
+        }
+      });
+      this.questionList[index].score = score;
     },
   },
 };
@@ -267,4 +322,14 @@
     }
   }
 }
+::v-deep.el-alert--warning.is-light {
+    background-color: #fbf9f3;
+    color: #ffba00;
+}
+::v-deep{
+  .el-alert__title {
+    font-size: 18px;
+    line-height: 18px;
+}
+}
 </style>

--
Gitblit v1.9.3