statistics.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="activityName">{{activity.ActivityName}}</view>
  5. <view class="stateBox">
  6. <view class="jinxing" v-if="activity.state=='进行中'">进行中</view>
  7. <view class="jieshu" v-if="activity.state=='已结束'">已结束</view>
  8. <view class="weiqiyong" v-if="activity.state=='未启用'">未启用</view>
  9. <view class="weiqiyong" v-if="activity.state=='未开始'">未开始</view>
  10. <view class="date" v-if="activity.StartTime">
  11. {{activity.StartTime.slice(0,10)}}-{{activity.EndTime.slice(0,10)}}</view>
  12. </view>
  13. </view>
  14. <view class="contentBox">
  15. <view class="title">活动数据</view>
  16. <view class="countBox">
  17. <view class="left">
  18. <view class="count">
  19. <view class="num">{{itemData.sumnum}}</view>
  20. <view class="name">报名人数</view>
  21. </view>
  22. <view class="count">
  23. <view class="num">{{itemData.num}}</view>
  24. <view class="name">已核销人数</view>
  25. </view>
  26. <view class="count">
  27. <view class="num">3928</view>
  28. <view class="name">浏览人数</view>
  29. </view>
  30. </view>
  31. <view>
  32. <view class="count">
  33. <view class="num">3928</view>
  34. <view class="name">最多推广员工</view>
  35. </view>
  36. <view class="count">
  37. <view class="num" style="color: #FF4F00;">{{itemData.rate}}</view>
  38. <view class="name">核销率</view>
  39. </view>
  40. </view>
  41. </view>
  42. <!-- 无数据空白页 -->
  43. <nodata v-if="itemData.length==0"></nodata>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import nodata from '../../components/nodata/nodata.vue'
  49. export default {
  50. components: {
  51. nodata,
  52. },
  53. data() {
  54. return {
  55. activity: {},
  56. page: 1,
  57. itemData: {},
  58. }
  59. },
  60. onLoad(opt) {
  61. this.activity = JSON.parse(opt.activity);
  62. console.log('activity==', this.activity);
  63. this.page = 1
  64. this.myOrderCoupon()
  65. },
  66. methods: {
  67. myOrderCoupon() {
  68. uni.showLoading({
  69. title: '加载中'
  70. })
  71. this.$http('openH5SetTheGuest/getDetails', {
  72. id: this.activity.ID,
  73. }, 'GET').then(res => {
  74. uni.hideLoading();
  75. // var list = res.data.Items
  76. var list = res.data
  77. if (this.page == 1) {
  78. this.itemData = list
  79. } else {
  80. this.itemData = this.itemData.concat(list)
  81. }
  82. if (list.length < 10) {
  83. this.noMoreShow = true
  84. } else {
  85. this.noMoreShow = false
  86. }
  87. })
  88. },
  89. },
  90. // 下拉刷新 上拉加载更多
  91. onPullDownRefresh() {
  92. this.page = 1
  93. this.myOrderCoupon()
  94. setTimeout(function() {
  95. uni.stopPullDownRefresh();
  96. }, 1000);
  97. },
  98. onReachBottom() {
  99. // this.page++;
  100. this.myOrderCoupon()
  101. },
  102. }
  103. </script>
  104. <style>
  105. .box {
  106. min-height: 100vh;
  107. background-color: #F4F5F7;
  108. width: 100vw;
  109. }
  110. .top {
  111. padding: 30rpx 24rpx;
  112. background-color: #FFFFFF;
  113. }
  114. .activityName {
  115. font-size: 30rpx;
  116. font-weight: bold;
  117. color: #333333;
  118. line-height: 42rpx;
  119. }
  120. .stateBox {
  121. margin-top: 4rpx;
  122. display: flex;
  123. align-items: center;
  124. }
  125. .jinxing {
  126. font-size: 22rpx;
  127. color: #00A040;
  128. line-height: 30rpx;
  129. width: 74rpx;
  130. height: 30rpx;
  131. background: #F2FBF6;
  132. border-radius: 4rpx;
  133. }
  134. .jieshu {
  135. font-size: 22rpx;
  136. color: #FF6010;
  137. line-height: 30rpx;
  138. width: 74rpx;
  139. height: 30rpx;
  140. background: #FFECE3;
  141. border-radius: 4rpx;
  142. }
  143. .weiqiyong{
  144. font-size: 22rpx;
  145. color: #3C3C3C;
  146. line-height: 30rpx;
  147. width: 74rpx;
  148. height: 30rpx;
  149. background: #F4F5F7;
  150. border-radius: 4rpx;
  151. }
  152. .date {
  153. height: 30rpx;
  154. font-size: 22rpx;
  155. color: #999999;
  156. line-height: 30rpx;
  157. margin-left: 15rpx;
  158. }
  159. .contentBox {
  160. padding: 30rpx 24rpx;
  161. height: calc(100vh - 170rpx);
  162. margin-top: 20rpx;
  163. background-color: #FFFFFF;
  164. }
  165. .title{
  166. height: 45rpx;
  167. font-size: 32rpx;
  168. font-weight: 500;
  169. color: #3C3C3C;
  170. line-height: 45rpx;
  171. }
  172. .countBox{
  173. padding: 50rpx 50rpx;
  174. background-color: #FFFFFF;
  175. display: flex;
  176. }
  177. .left{
  178. margin-right: 62rpx;
  179. }
  180. .count{
  181. width: 262rpx;
  182. height: 83rpx;
  183. background: #F7F7F7;
  184. border-radius: 10rpx;
  185. border: 1rpx solid #EEEEEE;
  186. margin-bottom: 30rpx;
  187. padding: 26rpx 5rpx;
  188. }
  189. .num{
  190. height: 50rpx;
  191. font-size: 36rpx;
  192. font-weight: 500;
  193. color: #3C3C3C;
  194. line-height: 50rpx;
  195. text-align: center;
  196. }
  197. .name{
  198. height: 33rpx;
  199. font-size: 24rpx;
  200. font-weight: 400;
  201. color: #999999;
  202. line-height: 33rpx;
  203. text-align: center;
  204. }
  205. .noMore {
  206. text-align: center;
  207. line-height: 50rpx;
  208. color: #999999;
  209. font-size: 28rpx;
  210. }
  211. </style>