activity-template.wxml 659 B

1234567891011121314151617181920
  1. <template name="activityTemplate">
  2. <view class='boxm' data-id="{{item.id}}" bindtap='seeDetails' wx:for="{{list}}" wx:key="item">
  3. <image src='{{volunteerImg}}'>
  4. <text class='txt-t'>{{volunteer}}</text>
  5. <text class='txt-bone'>{{volunteerActivity}}</text>
  6. </image>
  7. <view class='volunteer-box'>
  8. <!-- <image src=""></image> -->
  9. <view class='volunteer-location'>
  10. <image src="{{imgurl}}"></image>
  11. <text>{{url}}</text>
  12. </view>
  13. <view class='volunteer-people'>
  14. <image src="{{imgurltwo}}"></image>
  15. <text>{{people}}</text>
  16. </view>
  17. </view>
  18. </view>
  19. </template>