mh-two-thousand-and-two
2024-04-12 abdded451d7afb1922417ee4c937c531babc6bdb
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
<template>
    <view>
        当时法国
    </view>
</template>
 
<script>
    import {getMedicalDataOutput} from '@/api/index.js'
    export default {
        data() {
            return {
                Obj:{}
            }
        },
        onLoad(options) {
            this.Obj=options
            console.log('optionsoptionsoptions', options);
        },
        mounted() {
            this.innt()
        },
        methods: {
            // 
           async    innt(){
                await getMedicalDataOutput(this.Obj).then(res=>{
                    console.log(res,'接口');
                })
            }
        }
    }
</script>
 
<style>
 
</style>