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.
40 lines
874 B
40 lines
874 B
|
|
<template>
|
|
<view class="" style="font-size: 0;position: relative;">
|
|
<BackButton />
|
|
<image class="bannerImg" mode="widthFix" :src="showImg('/uploads/20250825/a5e4ad2654df63d751ffd547e3359776.png')"> </image>
|
|
<image @click="toWebView" mode="aspectFill" style="width: 147rpx;height: 147rpx;position: absolute;bottom: 300rpx;left: 301rpx;" :src="showImg('/uploads/20250825/688bc64132881464a23b44ecbc66ec85.png')"> </image>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import BackButton from "@/components/BackButton.vue";
|
|
export default{
|
|
components: {
|
|
BackButton,
|
|
},
|
|
data(){
|
|
return{
|
|
img:''
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
methods:{
|
|
toWebView() {
|
|
uni.navigateTo({
|
|
url: "/subPackages/webPage/webPage?url=" +
|
|
"https://des.js-dyyj.com/dist/#/",
|
|
});
|
|
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bannerImg{
|
|
width: 100vw;
|
|
}
|
|
</style>
|