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.
25 lines
444 B
25 lines
444 B
|
|
<template>
|
|
<view class="" style="font-size: 0;" @click="toList">
|
|
<image class="bannerImg" mode="aspectFill" :src="showImg('/uploads/20250728/5625c6a60945a256da15ef983d6db87c.png')"> </image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default{
|
|
methods:{
|
|
toList(){
|
|
uni.navigateTo({
|
|
url:'/subPackages/equityGoods/list'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bannerImg{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|