You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
high-mini/pages/tabBar/order/webUrl/webUrl.vue

34 lines
479 B

3 years ago
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
3 years ago
url: '',
3 years ago
orderNo:'',
sourType:''
3 years ago
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url);
3 years ago
this.orderNo= options.orderid;
3 years ago
this.sourType = options.sour;
// console.log('========'+options.sour);
3 years ago
},
onUnload() {
3 years ago
// if(this.sourType != 'MOBILE'){
// }
3 years ago
},
methods: {
}
}
</script>
<style>
</style>