From f357f41d488c8f91b63d86807874b02e2d9a6d08 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期三, 05 六月 2024 14:06:05 +0800
Subject: [PATCH] 测试完成
---
src/views/outsideChain.vue | 68 +++++++++++++++++++++++++++++++---
1 files changed, 62 insertions(+), 6 deletions(-)
diff --git a/src/views/outsideChain.vue b/src/views/outsideChain.vue
index 608ccee..b0762d8 100644
--- a/src/views/outsideChain.vue
+++ b/src/views/outsideChain.vue
@@ -44,12 +44,20 @@
<script>
import { getExternalfollowup } from "@/api/AiCentre/index";
+import CryptoJS from "crypto-js";
+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: "",
@@ -68,16 +76,64 @@
// 鍙互灏嗘暟鎹彁浜ゅ埌鍚庣鎴栬�呰繘琛屽叾浠栧鐞�
},
getQuestionnaire() {
- // this.taskid = this.$route.query.taskid;
- // this.patid = this.$route.query.patid;
+ let taskid = this.$route.query.param1;
+ let patid = this.$route.query.param2;
+ this.taskid = this.decrypt(taskid);
+ this.patid = this.decrypt(patid);
+
this.$modal.msgSuccess("鐢ㄦ埛id涓�" + this.patid);
this.$modal.msgSuccess("浠诲姟id涓�" + this.taskid);
- getExternalfollowup(this.taskid, this.patid).then((res) => {
- if (res.code == 200) {
- this.questionList = res.rows;
+ this.taskid = this.encrypt(this.taskid);
+ this.patid = this.encrypt(this.patid);
+ getExternalfollowup({ param1: this.taskid, param2: this.patid }).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); // 瀵规暟鎹繘琛岃В瀵�
+ },
+ // // 鍔犲瘑鍑芥暟
+ // encryptData(data, publicKey) {
+ // // 灏嗗叕閽ヨ浆鎹负CryptoJS鏍煎紡
+ // let key = CryptoJS.enc.Utf8.parse(publicKey);
+
+ // // 浣跨敤鍏挜杩涜鍔犲瘑
+ // let encrypted = CryptoJS.AES.encrypt(data, key, {
+ // mode: CryptoJS.mode.ECB,
+ // padding: CryptoJS.pad.Pkcs7,
+ // });
+
+ // // 杩斿洖鍔犲瘑鍚庣殑鏁版嵁
+ // return encrypted.toString();
+ // },
+
+ // // 瑙e瘑鍑芥暟
+ // decryptData(encryptedData, privateKey) {
+ // // 灏嗙閽ヨ浆鎹负CryptoJS鏍煎紡
+ // let key = CryptoJS.enc.Utf8.parse(privateKey);
+
+ // // 浣跨敤绉侀挜杩涜瑙e瘑
+ // let decrypted = CryptoJS.AES.decrypt(encryptedData, key, {
+ // mode: CryptoJS.mode.ECB,
+ // padding: CryptoJS.pad.Pkcs7,
+ // });
+ // // 灏嗚В瀵嗗悗鐨勬暟鎹浆鎹负瀛楃涓插苟杩斿洖
+ // return decrypted.toString(CryptoJS.enc.Utf8);
+ // },
},
};
</script>
--
Gitblit v1.9.3