Files
gaogaoDownLoad/pages/zhinan/zhinan.vue

38 lines
926 B
Vue

<template>
<view>
<view class="" style="width: 100%;line-height: 0;">
<image :src="url" style="width: 100%;" mode="widthFix"></image>
</view>
</view>
</template>
<script>
export default {
data() {
return {
url:"https://cos.yungao-tech.com//Web//image//dynamic//202109//08//4d9b58999380c74b4dcd8411ec950859f8da25faimage//jpeg"
}
},
onLoad(options) {
console.log(options)
if(options.id==1){
this.url="https://cos.yungao-tech.com/GalleryImages/20240912/492c3797c786dd21be939baeae1dbfc1.jpg"
}else if(options.id==2){
this.url="https://cos.yungao-tech.com//Web//image//dynamic//202109//08//b03784780be97ac6cae5a8f15d278fca6b886739image//jpeg"
}else {
this.url="https://cos.yungao-tech.com//Web//image//dynamic//202109//08//4d9b58999380c74b4dcd8411ec950859f8da25faimage//jpeg"
}
},
methods: {
}
}
</script>
<style>
view {
box-sizing: border-box;
}
</style>