From 17b041e2e7ebd5afe75403fefc57cc6a88b51dad Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期二, 06 八月 2024 13:23:58 +0800 Subject: [PATCH] 测试完成 --- src/views/outsideChain.vue | 103 +++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 86 insertions(+), 17 deletions(-) diff --git a/src/views/outsideChain.vue b/src/views/outsideChain.vue index 608ccee..e17fbfe 100644 --- a/src/views/outsideChain.vue +++ b/src/views/outsideChain.vue @@ -1,7 +1,7 @@ <template> <div class="questionnaire"> <div class="CONTENT"> - <div class="title">鏆戞湡闂嵎</div> + <div class="title">闅忚闂嵎</div> <div class="preview-left"> <!-- 鍗曢�� --> <div @@ -10,15 +10,15 @@ :key="item.aaa" > <div class="dev-text"> - {{ index + 1 }}銆�<span>{{ item.questionText }}</span> + {{ index + 1 }}銆�<span>{{ item.scriptContent }}</span> </div> <div class="dev-xx" v-if="item.valueType == 1"> - <el-radio-group v-model="item.radio"> + <el-radio-group v-model="item.asrtext"> <el-radio v-for="(items, index) in item.ivrLibaScriptTargetoptionList" :key="items.id" - :label="items.id" + :label="items.targetvalue" >{{ items.targetvalue }}</el-radio > </el-radio-group> @@ -26,8 +26,8 @@ <div v-else> <el-input type="textarea" - placeholder="鏈幏鍙栧埌淇℃伅" - v-model.sync="item.questionResult" + placeholder="璇疯緭鍏ュ唴瀹�" + v-model.sync="item.asrtext" :rows="2" /> </div> @@ -43,13 +43,23 @@ </template> <script> -import { getExternalfollowup } from "@/api/AiCentre/index"; +import { + getExternalfollowup, + SetsaveQuestionAnswer, +} from "@/api/AiCentre/index"; +import JSEncrypt from "jsencrypt"; export default { data() { return { taskid: 355, patid: 265823, questionList: null, + // 鍓嶇鍏挜 + publicKey: + "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKR0yHv0rbJWQE+Sc7/FwpW66qMd9qX2k6z+SDgkSdxWh/1GbBoAP7bDQQRF6vXmoKsD2ya42H6XRLSDXAoayuMCAwEAAQ== ", + // 鍚庣绉侀挜 + privateKey: + " MIIBUwIBADANBgkqhkiG9w0BAQEFAASCAT0wggE5AgEAAkEAtDOpbUQhcEoYy77agRhIHmAzs7H+KHJhN56gTTI9fWq23j77nI055MFV3oQQziIrNUTNaPpEQhZXBpI0+f9K9QIDAQABAkB3n0fcWfrcoMN/FU3VnrnZOEF6CzFNxkgU9P8y36QECWKZ9JhYQkNpKrMC9oXlN3VSaRigV7B+L/I/a0Rs1W+tAiEA4jx7xcXJ4y4BNwAmVHt6NNiEkzIwWnwC/0qsEu8NsOsCIQDL6MMn1D2uznC6OuOWpxDCkBh1JL1NzZTZeH2G+hj7nwIgKGAC9tjFnvWm4dn0/T7MIIJDpsFeP8fCAS2iZ/6hwuECIAS/eLvWr1EAsZNEh8QcQ8GkBU3E+ztyjAK8UX/xFt/VAiBf79/1tDErX4/DChecM8w3c3DhbBcjuE3fHZn7p6/UKg==", formData: { question1: "", question2: "", @@ -62,22 +72,81 @@ this.getQuestionnaire(); }, methods: { - submitForm() { - // 鎻愪氦琛ㄥ崟閫昏緫 - console.log(this.formData); - // 鍙互灏嗘暟鎹彁浜ゅ埌鍚庣鎴栬�呰繘琛屽叾浠栧鐞� - }, + // 鑾峰彇鏁版嵁 getQuestionnaire() { - // this.taskid = this.$route.query.taskid; - // this.patid = this.$route.query.patid; - this.$modal.msgSuccess("鐢ㄦ埛id涓�" + this.patid); - this.$modal.msgSuccess("浠诲姟id涓�" + this.taskid); - getExternalfollowup(this.taskid, this.patid).then((res) => { + let taskid = this.$route.query.param1; + let patid = this.$route.query.param2; + let routertf = this.$route.query.param5; + + console.log(taskid, "taskid"); + console.log(patid, "patid"); + console.log(routertf, "routertf"); + // let taskid = + // "OFp7tn/B6x7IzKJetvGWHdSWBj7msRlnlj6am9dyuHTH6sEt4uBbVCUXs5kcF/e4O2W6vqHf2Bz9K3/evbYDmw=="; + // let patid = + // "CVk0j8O86AeCqhV5WPsBBYDg9fec0wDoDlP9imYK4wDBNIkxywZzMJEGlPagOxnq6qr2WYZo0U8MUGWRGnq8ZA=="; + // this.taskid = this.decrypt(taskid); + this.patid = this.decrypt(patid); + + this.taskid = taskid; + this.patid = patid; + console.log(this.taskid, "this.taskid"); + console.log(this.patid, "this.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); + getExternalfollowup({ param1: taskids, param2: patids }).then((res) => { if (res.code == 200) { this.questionList = res.rows; } }); }, + // 鍔犲瘑鍑芥暟 + encrypt(txt) { + const encryptor = new JSEncrypt(); + encryptor.setPublicKey(this.publicKey); // 璁剧疆鍏挜 + return encryptor.encrypt(txt); // 瀵规暟鎹繘琛屽姞瀵� + }, + + // 瑙e瘑鍑芥暟 + decrypt(txt) { + const encryptor = new JSEncrypt(); + encryptor.setPrivateKey(this.privateKey); // 璁剧疆绉侀挜 + return encryptor.decrypt(txt); // 瀵规暟鎹繘琛岃В瀵� + }, + // 鎻愪氦 + submitForm() { + // 鎻愪氦琛ㄥ崟閫昏緫 + console.log(this.questionList); + let form = { + param1: this.encrypt(this.taskid), + param2: this.encrypt(this.patid), + ivrTaskcalldetailList: [], + }; + this.questionList.forEach((item) => { + let optionarr = []; + item.ivrLibaScriptTargetoptionList.forEach((option) => { + optionarr.push(option.targetvalue); + }); + let ivrTaskcalldetail = { + asrtext: item.asrtext, + valueType: item.valueType, + scriptContent: item.scriptContent, + targetoptions: optionarr.join(","), + }; + form.ivrTaskcalldetailList.push(ivrTaskcalldetail); + }); + console.log(form, "form"); + + SetsaveQuestionAnswer(form).then((res) => { + if (res.code == 200) { + this.$modal.msgSuccess("鎻愪氦鎴愬姛"); + } + }); + // 鍙互灏嗘暟鎹彁浜ゅ埌鍚庣鎴栬�呰繘琛屽叾浠栧鐞� + }, }, }; </script> -- Gitblit v1.9.3