WXL
2024-06-05 90610c882fda55697cba70aa3d90ee17f148594f
测试完成
已修改2个文件
54 ■■■■■ 文件已修改
src/views/outsideChain.vue 44 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/repositoryai/templateku/configurat/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/outsideChain.vue
@@ -44,12 +44,19 @@
<script>
import { getExternalfollowup } from "@/api/AiCentre/index";
import CryptoJS from "crypto-js";
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,8 +75,12 @@
      // 可以将数据提交到后端或者进行其他处理
    },
    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;
      taskid = this.decryptData(taskid, this.privateKey);
      patid = this.decryptData(patid, this.privateKey);
      this.taskid = taskid;
      this.patid = patid;
      this.$modal.msgSuccess("用户id为" + this.patid);
      this.$modal.msgSuccess("任务id为" + this.taskid);
      getExternalfollowup(this.taskid, this.patid).then((res) => {
@@ -78,6 +89,35 @@
        }
      });
    },
    // 加密函数
    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();
    },
    // 解密函数
    decryptData(encryptedData, privateKey) {
      // 将私钥转换为CryptoJS格式
      let key = CryptoJS.enc.Utf8.parse(privateKey);
      // 使用私钥进行解密
      let decrypted = CryptoJS.AES.decrypt(encryptedData, key, {
        mode: CryptoJS.mode.ECB,
        padding: CryptoJS.pad.Pkcs7,
      });
      // 将解密后的数据转换为字符串并返回
      return decrypted.toString(CryptoJS.enc.Utf8);
    },
  },
};
</script>
src/views/repositoryai/templateku/configurat/index.vue
@@ -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>
@@ -1250,7 +1256,7 @@
        )
      ) {
        this.$modal.msgError("该题目已存在");
        return
        return;
      }
      getverbaltrick({ id: row.id }).then((res) => {
        console.log(res, "详情");