YM
2024-04-26 a640a68b55034ad38b1936eedd33c23f63bec0f0
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
<template>
  <view id="box">
    <!-- RDF对应的参数 -->
    {{data}}
  </view>
</template>
 
<script>
import { getMedicalDataOutput } from "@/api/index.js";
export default {
  data() {
    return {
      Obj: {},
      data: ""
    };
  },
  onLoad(options) {
    this.Obj = options;
  },
  mounted() {
    this.innt();
  },
  methods: {
    innt() {
      getMedicalDataOutput(this.Obj).then((res) => {
        console.log(res);
        this.data = res;
      });
    }
  }
};
</script>
 
<style>
  #box{
    font-size: 14px;
  }
</style>