12345678910111213141516171819202122232425262728 |
- <view class='topHeader'>
- <view class="headHint">可用公众号{{wxList.length}}个</view>
- <view class="refresh" bindtap="getList" data-page="1">刷新</view>
- </view>
- <scroll-view class="container">
- <view class="cardList" wx:for="{{wxList}}" wx:key="index" bindtap="toCheck" data-item="{{item}}">
- <view class="infoBox">
- <image src='{{item.head_img}}' mode="widthFix"></image>
- <view class="info">
- <view class="name">{{item.nickname}}</view>
- <text class="infoHint">{{item.service_type_info}}</text>
- </view>
- </view>
- <view class="status" wx:if="{{item.is_checked==1}}">正在使用</view>
- <view class="status active" wx:if="{{item.is_checked!=1}}">点击切换</view>
- </view>
- <view class="goWarrant" bindtap="goWarrant">去授权公众号>></view>
- </scroll-view>
- <!-- 授权弹框 -->
- <view class="showModal" wx-if="{{warrantFlag}}" bindtap="closeToast">
- <view class="showModalCon" catchtap>
- <view class="title">公众号授权</view>
- <view class="con">进入客服消息,回复关键词「公众号授权」,获取授权链接。</view>
- <button class="button" hover-class="btn-hover" open-type="contact" session-from="figureChallenge" bindtap="toCustom">
- 去授权
- </button>
- </view>
- </view>
|