applyFor.wxml 1.5 KB

12345678910111213141516171819202122232425
  1. <!-- tabs -->
  2. <My_NavTabs tabsList="{{tabsList}}" bindsetIndex="setIndex"></My_NavTabs>
  3. <!-- 二维码 -->
  4. <My_TwoDimensionalCode wx:if="{{tabsIndex==0}}" title="商户二维码" codeName="商户二维码"></My_TwoDimensionalCode>
  5. <!-- 列表 -->
  6. <My_DisplayBox wx:else title="请求列表" isMore="{{false}}">
  7. <image slot="display-box-img" class="display-title_image" src="/static/icon-05.png" mode="aspectFit"></image>
  8. <scroll-view class="list-scroll-view" scroll-y bindscrolltolower="scrolltolower">
  9. <van-empty wx:if="{{!joinList.length>=1}}" description="暂无申请记录" />
  10. <view class="company-data" wx:for="{{joinList}}" data-index="{{index}}" bindtap="showBtnIndex">
  11. <image wx:if="{{item.attinfos[0].fobsurl}}" class="company-data-image" src="{{item.attinfos[0].fobsurl}}"></image>
  12. <image wx:else class="company-data-image" src="/static/userCenter/userImg.png"></image>
  13. <view class="company-data-brandName u-line-1">
  14. {{item.fname}}
  15. </view>
  16. <!-- 按钮 -->
  17. <view wx:if="{{showBtn==index}}" class="company-data-but">
  18. <view wx:if="{{!pattern}}">
  19. <van-button data-index="{{index}}" custom-class="custom-class-company-data jujue" style="margin-right: 20rpx;" catchtap="refuse">拒绝</van-button>
  20. <van-button data-index="{{index}}" custom-class="custom-class-company-data" catchtap="ratify">同意</van-button>
  21. </view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </My_DisplayBox>