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