Browse Source
Merge branch 'master' of http://8.134.10.79:3000/Leadfyy.co/blindDate
Merge branch 'master' of http://8.134.10.79:3000/Leadfyy.co/blindDate
# Conflicts: # pages.jsonmaster
5 changed files with 336 additions and 6 deletions
-
48components/lf-nolanPhoto/lf-nolanPhoto.vue
-
6pages.json
-
182pages/find/find.vue
-
53pages/messageCenter/index.vue
-
53pages/messageCenter/system.vue
@ -0,0 +1,48 @@ |
|||||
|
<template> |
||||
|
<view class="content"> |
||||
|
<view class="image-item" v-for="item in 5" :key="item"> |
||||
|
<image src="https://picsum.photos/200"></image> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data(){ |
||||
|
return { |
||||
|
|
||||
|
} |
||||
|
}, |
||||
|
onLoad(){ |
||||
|
// TODO 优化当头像数量超过盒子大小时最后一个元素显示+剩余多少张 |
||||
|
// 参考:http://www.bootstrapmb.com/item/2739 |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped="scoped"> |
||||
|
.content{ |
||||
|
display: flex; |
||||
|
flex-wrap: nowrap; |
||||
|
width: 100%; |
||||
|
height: 60rpx; |
||||
|
margin-top: 20rpx; |
||||
|
.image-item{ |
||||
|
width: 60rpx; |
||||
|
height: 60rpx; |
||||
|
border-radius: 50%; |
||||
|
border: 2rpx solid #FFFFFF; |
||||
|
overflow: hidden; |
||||
|
&:nth-child(n+2){ |
||||
|
margin-left: -16rpx; |
||||
|
} |
||||
|
image{ |
||||
|
width: 100%; |
||||
|
height: 100%; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
||||
@ -0,0 +1,53 @@ |
|||||
|
<template> |
||||
|
<view class="content"> |
||||
|
<view class="list" v-for="item in 12"> |
||||
|
<view class="lf-row-between"> |
||||
|
<view class="lf-font-32 lf-color-222 lf-line-1" style="width: 420rpx;">小程序里发动态教程</view> |
||||
|
<view class="lf-font-24 lf-color-777">2021-08-06</view> |
||||
|
</view> |
||||
|
<view class="lf-m-t-10 lf-font-28 lf-color-777">小程序里发动态教程</view> |
||||
|
</view> |
||||
|
<u-back-top :scrollTop="pageScrollTop"></u-back-top> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data(){ |
||||
|
return { |
||||
|
|
||||
|
} |
||||
|
}, |
||||
|
onLoad(){ |
||||
|
|
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style> |
||||
|
page{ |
||||
|
background-color: #F5F5F5; |
||||
|
} |
||||
|
</style> |
||||
|
<style lang="scss" scoped="scoped"> |
||||
|
.content{ |
||||
|
width: 750rpx; |
||||
|
height: max-content; |
||||
|
padding: 30rpx 32rpx; |
||||
|
box-sizing: border-box; |
||||
|
.list{ |
||||
|
width: 686rpx; |
||||
|
height: max-content; |
||||
|
background-color: #FFFFFF; |
||||
|
border-radius: 10rpx; |
||||
|
box-sizing: border-box; |
||||
|
padding: 30rpx; |
||||
|
&:nth-child(n+2){ |
||||
|
margin-top: 30rpx; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue