30 lines
837 B
Vue
30 lines
837 B
Vue
|
|
<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>
|