33 lines
703 B
Vue
33 lines
703 B
Vue
<template>
|
|
<view class="main">
|
|
<web-view style="width: 100%;height:100%" :src=url></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: "",
|
|
}
|
|
},
|
|
onLoad(query) {
|
|
let obj = {
|
|
time: query.time,
|
|
orderAmount: query.orderAmount,
|
|
id: query.id
|
|
}
|
|
|
|
this.url = `https://eshangtech.com/JumpDocument/PlatformModuleManage/Modules/InfoSearch/JumpToHXQcode.aspx?content=535001|019051||${obj.time}|${obj.orderAmount}|4|${obj.id}`
|
|
console.log('this.url', this.url);
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.main {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style> |