WXL
2025-07-23 f93c1fb5efcb2dfb06141e83624374ab5bb14e0b
src/views/outsideChainxj.vue
@@ -7,10 +7,12 @@
      </div>
    </div> -->
    <div class="CONTENT" >
    <div class="CONTENT">
      <div class="preview-left">
        <div class="toptitle">
          <div class="title">{{ taskname ? taskname : "无锡儿童医院医护知识宣教" }}</div>
          <div class="title">
            {{ taskname ? taskname : "无锡儿童医院医护知识宣教" }}
          </div>
          <div style="font-size: 22px; margin-bottom: 20px; line-height: 1.5">
            {{
              kcb
@@ -32,11 +34,12 @@
            margin-bottom: 10px;
          "
        >
        {{
          {{
            jsy
              ? jsy
              : "生活上要劳逸结合,注意休息和营养,适当锻炼,戒烟限酒,保持心情舒畅,定期复诊。那本次宣教内容就到这里,祝您身体健康!"
          }}        </div>
          }}
        </div>
        <!-- <div style="font-size: 20px">
          {{
            jsy
@@ -53,6 +56,7 @@
import {
  getExternalfollowup,
  Submitaquestionnaire,
  geturlinfo,
} from "@/api/AiCentre/index";
import { getToken } from "@/utils/auth";
import axios from "axios";
@@ -75,22 +79,39 @@
        question3: "",
      },
      richText: "<p>Hello, <strong>world</strong>!</p>",
      url:'',
      taskname:'',
      kcb:'',
      jsy:'',
      url: "",
      taskname: "",
      kcb: "",
      jsy: "",
    };
  },
  created() {
    this.getQuestionnaire();
    this.geturlinfo();
  },
  methods: {
    // 解析urlid
    geturlinfo() {
      // let url = window.location.href;
      let url = this.$route.query.p;
      // let url = 'http://218.108.11.22:8093/sf/003';
      // let urlid = this.extractLastSegmentFromUrl(url);
      geturlinfo(url).then((res) => {
        if (res.code == 200) {
          this.getQuestionnaire(
            res.data.param1,
            res.data.param2,
            res.data.param3,
            res.data.param5
          );
        }
      });
    },
    // 获取数据
    getQuestionnaire() {
      this.taskid = this.$route.query.param1;
      this.patid = this.$route.query.param2;
      this.taskname = this.$route.query.param3;
    getQuestionnaire(param1, param2, param3) {
      this.taskid = decodeURIComponent(param1);
      this.patid = decodeURIComponent(param2);
      // // let taskid =
      // //   "OFp7tn/B6x7IzKJetvGWHdSWBj7msRlnlj6am9dyuHTH6sEt4uBbVCUXs5kcF/e4O2W6vqHf2Bz9K3/evbYDmw==";
      // // let patid =
@@ -102,25 +123,26 @@
      // // this.$modal.msgSuccess("任务id为" + this.taskid);
      // let taskids = this.encrypt(this.taskid);
      // let patids = this.encrypt(this.patid);
      getExternalfollowup({ param1: this.taskid, param2: this.patid }).then((res) => {
        if (res.code == 200) {
          this.url = res.data.script[0].richText;
          this.jsy = res.data.jsy;
          this.kcb = res.data.kcb;
          // 临时获取数据
      axios
        .get(this.url)
        .then((response) => {
          console.log(response.data, "数据"); // 输出获取到的文件内容
          this.richText = response.data;
          this.richText = this.addStyleToImages(this.richText);
        })
        .catch((error) => {
          console.error("Failed to fetch file:", error);
        });
      getExternalfollowup({ param1: this.taskid, param2: this.patid }).then(
        (res) => {
          if (res.code == 200) {
            this.url = res.data.script[0].richText;
            this.jsy = res.data.jsy;
            this.kcb = res.data.kcb;
            // 临时获取数据
            axios
              .get(this.url)
              .then((response) => {
                console.log(response.data, "数据"); // 输出获取到的文件内容
                this.richText = response.data;
                this.richText = this.addStyleToImages(this.richText);
              })
              .catch((error) => {
                console.error("Failed to fetch file:", error);
              });
          }
        }
      });
      );
    },
    addStyleToImages(html) {
      return html.replace(
@@ -177,7 +199,6 @@
</script>
<style lang="scss" scoped>
.questionnaire {
  background-image: url("../assets/images/chainbackground1.jpg");
  background-color: #f9f9fb;