ylj20011123 815f9a4f57 update
2025-10-20 10:20:50 +08:00

30 lines
659 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&d=${obj.id}`
}
}
</script>
<style lang="less" scoped>
.main {
width: 100vw;
height: 100vh;
}
</style>