hz-zhhq-app/pages/healthMsg/healthMsgWebView.vue

30 lines
837 B
Vue
Raw Normal View History

2025-01-22 10:53:47 +08:00
<template>
<view>
<web-view :webview-styles="webviewStyles" :src="url" ></web-view>
</view>
</template>
<script>
import { getShopMallToken} from '@/common/api.js';
import { callbackRequest, setStorage, getStorage, sureAlterTip, devEnv, alertTip } from '@/common/util.js';
export default {
data() {
return {
webviewStyles: {
progress: {
color: '#4db4ea'
}
},
userInfo: getStorage("userInfo"),
url:""
//url: 'http://124.126.19.5:19847/vuemrst-wh/index.html#/'
//url:'http://192.168.171.60:8080/vuemrst-wh/index.html#/'
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url);
},
methods: {
}
}
</script>