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.
 
 
 
 
wangzong/pages/adv/index.vue

33 lines
526 B

<template>
<view class="adv">
<image :src="item" class="picItem" v-for="(item,index) in data" :key="index" mode="aspectFill"></image>
</view>
</template>
<script>
export default{
data(){
return {
data:[
'/static/images/adv.png','/static/images/adv.png'
]
}
}
}
</script>
<style lang="scss" scoped>
.adv{
min-height: calc(100vh);
background: #F5F5F7;
padding:24rpx;
width:100%;
.picItem{
width:100%;
height: 230rpx;
background: #FFFFFF;
border-radius: 20px;
margin-bottom: 20rpx;
}
}
</style>