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.
27 lines
599 B
27 lines
599 B
<template>
|
|
<view class="pageBg">
|
|
<web-view src="https://lyjp-bucket-main.oss-cn-beijing.aliyuncs.com/6f4db7615fff8c35085cdb53976af6afec0b96d857c27cda487487564b7efefb.xls" :webview-styles="webviewStyles" :update-title="false"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
let webviewStyles = {
|
|
progress: {
|
|
color: '#3877ff'
|
|
},
|
|
}
|
|
import {
|
|
onLoad,
|
|
onReady
|
|
} from "@dcloudio/uni-app"
|
|
import {ref} from 'vue'
|
|
let link = ref('')
|
|
onLoad((option)=>{
|
|
link.value = decodeURIComponent(option.link)
|
|
console.log(link.value)
|
|
// link.value = option.link
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|