1
YM
2024-06-11 a4fe90ef374a9a3144fb8de5d7229dd11bfa7ff4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
  <view id="box">
    <pre v-if="options.outputType == 'XML' || options.outputType == 'JSON'">
      <code>
        {{ data }}
      </code>
    </pre>
    <div v-else-if="'NT'" v-html="data"></div>
    <div v-else-if="'RDF'" v-html="data"></div>
  </view>
</template>
 
<script>
import { getMedicalDataOutput, getPersonDataOutput } from "@/api/index.js";
 
export default {
  data() {
    return {
      options: {},
      data: "",
    };
  },
  onLoad(options) {
    this.options = options;
    this.innt();
  },
  methods: {
    innt() {
      if (this.options.type == "Person") {
        getPersonDataOutput({
          personId: this.options.id,
          dataTypeEO: this.options.outputType,
        }).then((res) => {
          this.data = res;
        });
      } else {
        getMedicalDataOutput(this.options).then((res) => {
          this.data = res;
          console.log(this.data, "data");
        });
      }
    },
  },
};
</script>
 
<style>
#box {
  font-size: 14px;
}
</style>