8 changed files with 264 additions and 47 deletions
-
8common/styles/theme.css
-
63components/lf-multiColumnAd/lf-multiColumnAd.vue
-
2pages.json
-
20pages/address/add/add.less
-
40pages/address/add/add.vue
-
40pages/address/list/list.less
-
80pages/address/list/list.vue
-
58pages/index/index/index.vue
@ -0,0 +1,63 @@ |
|||
<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> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue