xinelu-applet-ui/pagesC/H5Healthrecord/H5Healthrecord.vue
2024-03-30 21:06:43 +08:00

33 lines
525 B
Vue

<template>
<view>
<web-view :src="src"></web-view>
</view>
</template>
<script>
import {
getHealthKey
} from '@/api/pagesC/H5Healthrecord/index.js'
export default {
data() {
return {
src: '',
};
},
onLoad() {
this.info();
},
methods: {
info() {
getHealthKey(uni.getStorageSync('userinfo').cardNo).then(res => {
this.src = 'https://qmjk.jiankangdongying.cn/html/gzd/jkda/expLogin.html?key=' + res.data +
'&dyfs=14'
})
},
}
}
</script>
<style lang="scss">
</style>