index.wxml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <view class="msgBox">
  2. <!-- 标题和按钮 -->
  3. <view class="msgBox-title-and-but">
  4. <view class="msgBox-title">直播账号信息</view>
  5. <view class="msgBox-but">
  6. <van-button custom-class="custom-class-msgBox-but">一键分享</van-button>
  7. </view>
  8. </view>
  9. <!-- 直播信息 -->
  10. <view wx:if="{{accountStatus==1}}" class="account-information">
  11. <view class="account-information-row">
  12. <view>
  13. <view class="title" style="margin-right: 8rpx;">密码</view>{{accountMsg.channelpasswd}}
  14. </view>
  15. <view>
  16. <view class="title">直播间地址</view>
  17. <view class="chained-address u-line-1">{{accountMsg.fliveshowurl}}</view>
  18. <view data-url="{{accountMsg.fliveshowurl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
  19. </view>
  20. </view>
  21. <view class="account-information-row">
  22. <view>
  23. <view class="title">助教地址</view>
  24. <view class="chained-address u-line-1">{{accountMsg.fassistanturl}}</view>
  25. <view data-url="{{accountMsg.fassistanturl}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
  26. </view>
  27. </view>
  28. <view class="account-information-row">
  29. <view>
  30. <view class="title">客户端开播地址</view>
  31. <view class="chained-address u-line-1">{{accountMsg.fliveurl_client}}</view>
  32. <view data-url="{{accountMsg.fliveurl_client}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
  33. </view>
  34. </view>
  35. <view class="account-information-row">
  36. <view>
  37. <view class="title">web端开播地址</view>
  38. <view class="chained-address u-line-1">{{accountMsg.fliveurl_web}}</view>
  39. <view data-url="{{accountMsg.fliveurl_web}}" class="chained-address-copy" bindtap="copyTheAddress">复制</view>
  40. </view>
  41. </view>
  42. </view>
  43. <view wx:if="{{accountStatus!=1 && isSY}}" class="go-to-apply-for" catchtap="applyForLive">
  44. {{accountStatus==3?'暂无账号 点击申请 ':'直播申请中'}}<image wx:if="{{accountStatus==3}}" style="width: 20rpx; height: 22rpx; margin-left: 8rpx;" src="/static/icon-07.png"></image>
  45. </view>
  46. <view wx:if="{{accountStatus!=1 && isSY==false}}" class="go-to-apply-for">
  47. 暂无展会直播账号
  48. </view>
  49. </view>