fraWeekReport.wxml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <view class="whole-page">
  2. <view class="week-report" bind:tap="showWeekDate">
  3. <view class="l">周报数据</view>
  4. <view class="r">
  5. <text wx:if="{{selectedWeek}}">{{selectedWeek}}</text>
  6. <text wx:else>{{columns[columns.length-1]}}</text>
  7. <view class="r-border"></view>
  8. </view>
  9. </view>
  10. <view class="no-data" wx:if="{{noData}}">
  11. <view class="no-data-img">
  12. </view>
  13. <view class="tip">
  14. 暂未推送数据
  15. </view>
  16. </view>
  17. <view class="data-container" wx:else>
  18. <view class="report-data">
  19. <view class="report-first">
  20. <view class="top">
  21. <view class="title">
  22. <view class="t">
  23. 经营分
  24. </view>
  25. <view class="b">(指标:90分以上)</view>
  26. </view>
  27. <view class="title title1">经营分排名</view>
  28. <view class="title">
  29. <view class="t">
  30. 履约率
  31. </view>
  32. <view class="b">(指标:90分以上)</view>
  33. </view>
  34. </view>
  35. <view class="top top1">
  36. <view class="title">
  37. {{reportList.douyinOperateScore}}
  38. </view>
  39. <view class="title title1"> {{reportList.operateScoreRank}}</view>
  40. <view class="title">
  41. {{reportList.complianceRate}}
  42. </view>
  43. </view>
  44. </view>
  45. <view class="report-first">
  46. <view class="top">
  47. <view class="title ">履约率排名</view>
  48. <view class="title title1">
  49. <view class="t">
  50. 保洁复购率
  51. </view>
  52. <view class="b">(指标:90分以上)</view>
  53. </view>
  54. <view class="title ">
  55. 保洁复购率排名
  56. </view>
  57. </view>
  58. <view class="top top1">
  59. <view class="title">
  60. {{reportList.complianceRateRank}}
  61. </view>
  62. <view class="title title1"> {{reportList.bjRebuyRate}}</view>
  63. <view class="title">
  64. {{reportList.bjRebuyRateRank}}
  65. </view>
  66. </view>
  67. </view>
  68. <view class="report-first">
  69. <view class="top">
  70. <view class="title ">全职在线人数</view>
  71. <view class="title title1">
  72. <view class="t">
  73. 抖音差评率
  74. </view>
  75. <view class="b">(指标:小于1.5%)</view>
  76. </view>
  77. <view class="title">
  78. 抖音差评率排名
  79. </view>
  80. </view>
  81. <view class="top top1">
  82. <view class="title">
  83. {{reportList.onlinePersonNumber}}
  84. </view>
  85. <view class="title title1"> {{reportList.douyinBadEvaRate}}</view>
  86. <view class="title">
  87. {{reportList.douyinBadEvaRank}}
  88. </view>
  89. </view>
  90. </view>
  91. <view class="report-first">
  92. <view class="top">
  93. <view class="title">
  94. 回访差评率
  95. </view>
  96. <view class="title title1">回访差评率排名</view>
  97. <view class="title">
  98. 回访差评分
  99. </view>
  100. </view>
  101. <view class="top top1">
  102. <view class="title">
  103. {{reportList.crmBadEvaRate}}
  104. </view>
  105. <view class="title title1"> {{reportList.crmBadEvaRateRank}}</view>
  106. <view class="title">
  107. {{reportList.crmBadEvaScore}}
  108. </view>
  109. </view>
  110. </view>
  111. <view class="total">
  112. <view>
  113. 合计权重分
  114. </view>
  115. <view>
  116. {{reportList.totalWeightScore}}分
  117. </view>
  118. </view>
  119. </view>
  120. </view>
  121. <van-overlay show="{{ showPopup }}" bind:click="onClose" />
  122. <view class="time-select" wx:if="{{showPopup}}">
  123. <van-picker
  124. default-index="{{ reportDateList.length }}"
  125. title="请选择时间"
  126. show-toolbar
  127. columns="{{ columns }}"
  128. bind:cancel="onCancel"
  129. bind:confirm="onConfirm"
  130. />
  131. </view>
  132. </view>