1
YM
2024-05-18 c6e1ec7df70b351fc3a367f386b694dfc3388202
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 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) => {
          console.log(res);
          this.data = res;
        });
      } else {
        getMedicalDataOutput(this.options).then((res) => {
          console.log(res);
          this.data = res;
        });
      }
    }
  }
};
</script>
 
<style>
#box {
  font-size: 14px;
}
</style>