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.
48 lines
672 B
48 lines
672 B
<template>
|
|
<view class="content">
|
|
<view class="item" :class="{'max-item': item == 0}" v-for="item in 6"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<style>
|
|
page{
|
|
background-color: #F6F6F6;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped="scoped">
|
|
.content{
|
|
width: 750rpx;
|
|
height: max-content;
|
|
background-color: #FFFFFF;
|
|
box-sizing: border-box;
|
|
padding: 27rpx;
|
|
overflow: hidden;
|
|
.item{
|
|
width: 222rpx;
|
|
height: 222rpx;
|
|
background-color: #DD6161;
|
|
float: left;
|
|
margin: 5rpx;
|
|
}
|
|
.max-item{
|
|
width: 454rpx;
|
|
height: 454rpx;
|
|
}
|
|
}
|
|
</style>
|