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.
63 lines
912 B
63 lines
912 B
<template>
|
|
<view class="content">
|
|
<view class="left">
|
|
<image class="left-img"></image>
|
|
</view>
|
|
<view class="right">
|
|
<view class="right-img">
|
|
<image></image>
|
|
</view>
|
|
<view class="right-img">
|
|
<image></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
created(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped="scoped">
|
|
.content{
|
|
width: 750rpx;
|
|
height: max-content;
|
|
box-sizing: border-box;
|
|
padding: 30rpx 32rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.left{
|
|
width: 436rpx;
|
|
height: 436rpx;
|
|
.left-img{
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #D8D8D8;
|
|
}
|
|
}
|
|
.right{
|
|
width: 228rpx;
|
|
height: 436rpx;
|
|
.right-img{
|
|
width: 228rpx;
|
|
height: 208rpx;
|
|
background: #D8D8D8;
|
|
&:nth-child(2n){
|
|
margin-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|