2025-06-16 13:40:43 +08:00
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<web-view :src="url"></web-view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
url: ''
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad (options) {
|
2025-08-28 13:34:09 +08:00
|
|
|
const timestamp = new Date().getTime()
|
|
|
|
|
this.url = `${options.url}?timestamp=${timestamp}`
|
2025-06-16 13:40:43 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|