12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="msgBox">
- <!-- 标题和按钮 -->
- <view class="msgBox-title-and-but">
- <view class="msgBox-title">直播账号信息</view>
- <view class="msgBox-but">
- <van-button custom-class="custom-class-msgBox-but">一键分享</van-button>
- </view>
- </view>
- <!-- 直播信息 -->
- <view wx:if="{{accountStatus==1}}" class="account-information">
- <view class="account-information-row">
- <view>
- <view class="title" style="margin-right: 8rpx;">密码</view>{{accountMsg.channelpasswd}}
- </view>
- <view>
- <view class="title">直播间地址</view>
- <view class="chained-address u-line-1">{{accountMsg.fliveshowurl}}</view>
- <view data-url="{{accountMsg.fliveshowurl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
- </view>
- </view>
- <view class="account-information-row">
- <view>
- <view class="title">助教地址</view>
- <view class="chained-address u-line-1">{{accountMsg.fassistanturl}}</view>
- <view data-url="{{accountMsg.fassistanturl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
- </view>
- </view>
- <view class="account-information-row">
- <view>
- <view class="title">客户端开播地址</view>
- <view class="chained-address u-line-1">{{accountMsg.fliveurl_client}}</view>
- <view data-url="{{accountMsg.fliveurl_client}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
- </view>
- </view>
- <view class="account-information-row">
- <view>
- <view class="title">web端开播地址</view>
- <view class="chained-address u-line-1">{{accountMsg.fliveurl_web}}</view>
- <view data-url="{{accountMsg.fliveurl_web}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
- </view>
- </view>
- </view>
- <view wx:if="{{accountStatus!=1 && isSY}}" class="go-to-apply-for" catchtap="applyForLive">
- {{accountStatus==3?'暂无账号 点击申请 ':'直播申请中'}}<image wx:if="{{accountStatus==3}}" style="width: 20rpx; height: 22rpx; margin-left: 8rpx;" src="/static/icon-07.png"></image>
- </view>
- <view wx:if="{{accountStatus!=1 && isSY==false}}" class="go-to-apply-for">
- 暂无展会直播账号
- </view>
- </view>
|