12345678910111213141516171819202122232425 |
- <!--pages/groupPage/my-group/my-group.wxml-->
- <view class="my-group">
- <scroll-view scroll-y="{{true}}">
- <view class="my-group-content">
- <block wx:for="{{myGroupList}}" wx:key="{{index}}">
- <view class="group-item" bindtap="collageDetails" data-num="{{item.status==='SUCCESSED'}}" data-orderId="{{item.id}}" data-groupId="{{item.groupId}}" data-productId="{{item.productId}}" data-uid="{{item.organizer}}">
- <image class="item-img" src="{{item.iconImg}}" ></image>
- <view id="grade">{{item.groupTitle}}</view>
- <image class="jiang" src="../../../static/groupImg/jiang.png" wx:if="{{item.groupType== 'PROMOTION' }}"></image>
- <image class="type-img" src="../../../static/groupImg/{{item.status==='SUCCESSED' ? 'yisuccess' : 'weisuccess' }}.png"></image>
- </view>
- </block>
- </view>
- </scroll-view>
- </view>
- <popup
- id="popup"
- typeOf="{{typeOf}}"
- title="{{title}}"
- headTextOne="{{headTextOne}}"
- headTextTwo="{{headTextTwo}}"
- content="{{content}}"
- bindGroup="group"
- bindClose="close"
- ></popup>
|