index.wxml 2.4 KB

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