1234567891011121314151617181920 |
- <template name="activityTemplate">
- <view class='boxm' data-id="{{item.id}}" bindtap='seeDetails' wx:for="{{list}}" wx:key="item">
- <image src='{{volunteerImg}}'>
- <text class='txt-t'>{{volunteer}}</text>
- <text class='txt-bone'>{{volunteerActivity}}</text>
- </image>
- <view class='volunteer-box'>
- <!-- <image src=""></image> -->
- <view class='volunteer-location'>
- <image src="{{imgurl}}"></image>
- <text>{{url}}</text>
- </view>
- <view class='volunteer-people'>
- <image src="{{imgurltwo}}"></image>
- <text>{{people}}</text>
- </view>
- </view>
- </view>
- </template>
|