33 lines
525 B
Vue
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> |