index.wxml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <view style="height: 20rpx;"></view>
  2. <view class="msgBox">
  3. <!-- 标题和按钮 -->
  4. <view class="msgBox-title-and-but">
  5. <view class="msgBox-title">直播账号信息</view>
  6. <view class="msgBox-but">
  7. <van-button custom-class="custom-class-msgBox-but">一键开播</van-button>
  8. </view>
  9. </view>
  10. <!-- 直播信息 -->
  11. <view wx:if="{{true}}" class="account-information">
  12. <view class="account-information-left">
  13. <view>
  14. <text class="title">直播账号</text> 1000000000
  15. </view>
  16. <view>
  17. <text class="title">密码</text> 321432
  18. </view>
  19. </view>
  20. <view class="account-information-right">
  21. <view>
  22. <text class="title">开播时间</text> 2021-12-23 17:00
  23. </view>
  24. <view>
  25. <text class="title">直播间地址 </text><text class="copy" bindtap="copyTheAddress">www.jfc001.com/zb001</text>
  26. </view>
  27. </view>
  28. </view>
  29. <view wx:else class="go-to-apply-for">
  30. 暂无账号 前往申请 <image style="width: 20rpx; height: 22rpx; margin-left: 8rpx;" src="/static/icon-07.png"></image>
  31. </view>
  32. </view>
  33. <!-- 数据 -->
  34. <view class="msgBox" style="white-space:nowrap;">
  35. <!-- 标题和按钮 -->
  36. <view class="msgBox-title-and-but">
  37. <view class="msgBox-title">直播数据</view>
  38. </view>
  39. <!-- 数据宫格 -->
  40. <view class="data-grid">
  41. <view>
  42. <view class="title">观看次数(次)</view>
  43. <view class="number">123</view>
  44. </view>
  45. <view>
  46. <view class="title">观看人数(人)</view>
  47. <view class="number">123</view>
  48. </view>
  49. <view>
  50. <view class="title">观看时长(分钟)</view>
  51. <view class="number">123</view>
  52. </view>
  53. <view>
  54. <view class="title">人均观看次数(次)</view>
  55. <view class="number">123</view>
  56. </view>
  57. <view>
  58. <view class="title">人均观看时长(分钟)</view>
  59. <view class="number">123</view>
  60. </view>
  61. </view>
  62. <!-- 数据表格 -->
  63. <scroll-view scroll-x="{{true}}" class="data-formlist">
  64. <!-- 表头 -->
  65. <view class="data-formlist-header">
  66. <view class="the-first-column">用户名称</view>
  67. <view class="the-second-series">用户id</view>
  68. <view class="the-second-series">观看时长</view>
  69. <view class="the-fourth-column">进入时间</view>
  70. <view class="the-word">地区</view>
  71. <view class="the-word">城市</view>
  72. <view class="the-first-column">观众IP</view>
  73. <view class="the-second-series">观看终端</view>
  74. <view class="the-second-series">场次</view>
  75. <view class="the-second-series">观看类型</view>
  76. </view>
  77. <!-- 表格 -->
  78. <view wx:for="{{5}}" class="data-formlist-row">
  79. <view class="the-first-column">好吃的薯片</view>
  80. <view class="the-second-series">1234533</view>
  81. <view class="the-second-series">6小时</view>
  82. <view class="the-fourth-column">2021-12-23 17:00:34</view>
  83. <view class="the-word">浙江</view>
  84. <view class="the-word">嘉兴</view>
  85. <view class="the-first-column">192.168.0.1</view>
  86. <view class="the-second-series">终端1</view>
  87. <view class="the-second-series">10场</view>
  88. <view class="the-second-series">直播</view>
  89. </view>
  90. </scroll-view>
  91. </view>