13 changed files with 399 additions and 15 deletions
@ -0,0 +1,23 @@ |
|||
// pages/indexNew/components/volunteer/volunteer.js
|
|||
Component({ |
|||
/** |
|||
* 组件的属性列表 |
|||
*/ |
|||
properties: { |
|||
|
|||
}, |
|||
|
|||
/** |
|||
* 组件的初始数据 |
|||
*/ |
|||
data: { |
|||
|
|||
}, |
|||
|
|||
/** |
|||
* 组件的方法列表 |
|||
*/ |
|||
methods: { |
|||
|
|||
} |
|||
}) |
@ -0,0 +1,4 @@ |
|||
{ |
|||
"component": true, |
|||
"usingComponents": {} |
|||
} |
@ -0,0 +1,18 @@ |
|||
<view class="box"> |
|||
<view class="item"> |
|||
<image src="https://epdc-shibei.elinkservice.cn/epdcFile/M00/02/B2/rBAAM16W7SqAY1XjAAMWUuGo2D4654.jpg" /> |
|||
<view class="name">李先生</view> |
|||
<view class="autograph">我志愿我骄傲</view> |
|||
</view> |
|||
<view class="item"> |
|||
<image src="https://epdc-shibei.elinkservice.cn/epdcFile/M00/02/B2/rBAAM16W7SqAY1XjAAMWUuGo2D4654.jpg" /> |
|||
<view class="name">李先生</view> |
|||
<view class="autograph">我志愿我骄傲</view> |
|||
</view> |
|||
<view class="item"> |
|||
<image src="https://epdc-shibei.elinkservice.cn/epdcFile/M00/02/B2/rBAAM16W7SqAY1XjAAMWUuGo2D4654.jpg" /> |
|||
<view class="name">李先生</view> |
|||
<view class="autograph">我志愿我骄傲</view> |
|||
</view> |
|||
</view> |
|||
<view class="show">*按姓氏拼音排序</view> |
@ -0,0 +1,48 @@ |
|||
.box { |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: space-between; |
|||
flex-wrap: wrap; |
|||
padding: 0rpx 40rpx 19rpx 40rpx; |
|||
} |
|||
|
|||
.box .item { |
|||
width: 320rpx; |
|||
height: 282rpx; |
|||
margin-top: 20rpx; |
|||
background: #fff; |
|||
border-radius: 20rpx; |
|||
display: flex; |
|||
flex-direction: column; |
|||
align-items: center; |
|||
} |
|||
|
|||
.box .item image { |
|||
width: 110rpx; |
|||
height: 110rpx; |
|||
border-radius: 50%; |
|||
margin-top: 40rpx; |
|||
} |
|||
|
|||
.box .item .name { |
|||
margin-top: 11rpx; |
|||
font-size: 30rpx; |
|||
font-weight: bold; |
|||
color: rgba(51, 51, 51, 1); |
|||
} |
|||
|
|||
.box .item .autograph { |
|||
margin-top: 18rpx; |
|||
font-size:26rpx; |
|||
font-weight:500; |
|||
color:rgba(193,193,193,1); |
|||
} |
|||
|
|||
.show { |
|||
padding: 0rpx 40rpx; |
|||
height: 24rpx; |
|||
font-size: 24rpx; |
|||
line-height: 24rpx; |
|||
font-weight: 500; |
|||
color: #C5C5C5; |
|||
} |
After Width: | Height: | Size: 2.3 KiB |
Loading…
Reference in new issue