invite.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <template>
  2. <view class="box">
  3. <view class="header">
  4. <image :src="detailData.tSSetting.bannerImg" mode="" class="bar"></image>
  5. <image src="../../static/img/btn_act@2x.png" mode="" class="guizeBtn" @click="guize"></image>
  6. </view>
  7. <!-- 统计 -->
  8. <view class="sumBg">
  9. <view class="viewBg" @click="gonavigateTo('commissionHistory')">
  10. <view class="money" style="color: #FF4F00;">¥{{detailData.totalMoney}}</view>
  11. <view class="moneyTitle">累计佣金
  12. <image src="../../static/img/icon_arrow@2x.png" mode="" style="width: 18rpx; height: 18rpx;">
  13. </image>
  14. </view>
  15. </view>
  16. <view class="line"></view>
  17. <view class="viewBg" @click="gonavigateTo('extractHistory')">
  18. <view class="money">¥{{detailData.withdrawalMoney}}</view>
  19. <view class="moneyTitle">累计提现
  20. <image src="../../static/img/icon_arrow@2x.png" mode="" style="width: 18rpx; height: 18rpx;">
  21. </image>
  22. </view>
  23. </view>
  24. <view class="line"></view>
  25. <view class="viewBg" @click="gonavigateTo('invitePeople')">
  26. <view class="money">¥{{detailData.shareCount}}</view>
  27. <view class="moneyTitle">邀请人数
  28. <image src="../../static/img/icon_arrow@2x.png" mode="" style="width: 18rpx; height: 18rpx;">
  29. </image>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 明细 -->
  34. <view class="mingxiBg" v-if="arr.length > 0">
  35. <view class="mingxi">
  36. <view v-for="(item,index) in arr" :key="index">
  37. <view class="itemBg">
  38. <image :src='item.MemberHeadImg' mode=""
  39. style="width: 72rpx; height: 72rpx; border-radius: 36rpx;"></image>
  40. <view class="nickName" v-if="item.MemberNickName">{{item.MemberNickName}}</view>
  41. <view class="time">{{item.CreateTime.slice(0,item.CreateTime.length-8)}}</view>
  42. <view class="jine">+{{item.Money}}</view>
  43. </view>
  44. </view>
  45. </view>
  46. <!-- 查看更多 -->
  47. <view class="moreView">
  48. <view style="color: #3F90F7; font-size: 30rpx;" @click="gonavigateTo('commissionHistory')">查看更多</view>
  49. <image src="../../static/img/icon_arrow_blue.png" mode="" style="width: 24rpx; height: 24rpx;"></image>
  50. </view>
  51. </view>
  52. <view class="mingxiBg" v-else>
  53. <image :src="emptyImg" mode="" class="emptyImg"></image>
  54. </view>
  55. <view class="emptyView"></view>
  56. <view class="bottomView">
  57. <view class="bottomImg" @click="gonavigateTo('inviteImg')">
  58. <image src="../../static/img/icon_ma@2x.png" mode=""
  59. style="width: 30rpx; height: 30rpx; margin-right: 10rpx;">面对面邀请</image>
  60. </view>
  61. <button class="bottomImg2" open-type="share">立即邀请</button>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. data() {
  68. return {
  69. detailData: {},
  70. arr: [],
  71. emptyImg: 'http://123.56.219.146:10086/keepCar/jqsy.png',
  72. uidStr: '',
  73. share: {
  74. title: '车蓝图4S店养车服务',
  75. path: 'pages/homePage/homePage?scene=' + this.uidStr,
  76. imageUrl: '',
  77. desc: '',
  78. content: ''
  79. }
  80. }
  81. },
  82. onLoad() {
  83. this.uidStr = uni.getStorageSync("logodata").uid.replace(/\-/g, "")
  84. },
  85. onShow() {
  86. this.getDetailData();
  87. },
  88. methods: {
  89. onShareAppMessage: function() {
  90. },
  91. guize() {
  92. uni.navigateTo({
  93. url: 'guize?couContent=' + this.detailData.tSSetting.activityRules
  94. })
  95. },
  96. getDetailData() {
  97. uni.showLoading({
  98. title: '加载中'
  99. })
  100. let url = 'worldKeepCar/worldDistribution/queryDistributionIndexDetail',
  101. params = {
  102. }
  103. this.$http(url, params, 'GET').then(res => {
  104. uni.hideLoading();
  105. var data = res.data
  106. // 处理 undefined和null转为空白字符串
  107. for (const key in data) {
  108. data[key] = this.$praseStrEmpty(data[key])
  109. }
  110. this.detailData = data
  111. this.arr = this.detailData.recentEarnings
  112. })
  113. },
  114. gonavigateTo(url) {
  115. uni.navigateTo({
  116. url: url
  117. })
  118. }
  119. },
  120. // 下拉刷新 上拉加载更多
  121. onPullDownRefresh() {
  122. this.getDetailData()
  123. setTimeout(function() {
  124. uni.stopPullDownRefresh();
  125. }, 1000);
  126. },
  127. // onReachBottom() {
  128. // this.page++;
  129. // this.getItemData()
  130. // },
  131. }
  132. </script>
  133. <style scoped>
  134. .box {
  135. min-height: 100vh;
  136. background: #F4F5F7;
  137. }
  138. .header {
  139. width: 100%;
  140. height: 750rpx;
  141. position: relative;
  142. }
  143. .bar {
  144. width: 100%;
  145. height: 750rpx;
  146. }
  147. .guizeBtn {
  148. position: absolute;
  149. left: 580rpx;
  150. top: 48rpx;
  151. width: 169rpx;
  152. height: 56rpx;
  153. }
  154. .sumBg {
  155. display: flex;
  156. justify-content: space-between;
  157. align-items: center;
  158. margin: 20rpx 24rpx;
  159. padding: 36rpx 50rpx;
  160. background-color: #FFFFFF;
  161. border-radius: 10rpx;
  162. }
  163. .viewBg {
  164. display: flex;
  165. flex-direction: column;
  166. align-items: center;
  167. background-color: #FFFFFF;
  168. }
  169. .money {
  170. font-size: 38rpx;
  171. color: #000000;
  172. font-weight: bold;
  173. }
  174. .moneyTitle {
  175. font-size: 28rpx;
  176. color: #666666;
  177. }
  178. .line {
  179. width: 1rpx;
  180. height: 73rpx;
  181. background-color: #EEEEEE;
  182. }
  183. .mingxiBg {
  184. margin: 0rpx 24rpx;
  185. background-color: #FFFFFF;
  186. border-radius: 10rpx;
  187. }
  188. .mingxi {
  189. background-image: url('http://123.56.219.146:10086/keepCar/jqsy2.png');
  190. background-size: 100%;
  191. background-repeat: no-repeat;
  192. padding-top: 89rpx;
  193. }
  194. .emptyImg {
  195. height: 493rpx;
  196. width: 100%;
  197. }
  198. .itemBg {
  199. height: 98rpx;
  200. margin: 0 20rpx;
  201. display: flex;
  202. justify-content: space-between;
  203. align-items: center;
  204. }
  205. .nickName {
  206. font-size: 30rpx;
  207. color: #3C3C3C;
  208. width: 40%;
  209. margin: 0 15rpx;
  210. overflow: hidden;
  211. text-overflow: ellipsis;
  212. white-space: nowrap;
  213. }
  214. .time {
  215. font-size: 30rpx;
  216. color: #999999;
  217. width: 27%;
  218. }
  219. .jine {
  220. font-size: 32rpx;
  221. color: #FF4F00;
  222. font-weight: bold;
  223. margin: 0 15rpx;
  224. }
  225. .moreView {
  226. height: 92rpx;
  227. display: flex;
  228. justify-content: center;
  229. align-items: center;
  230. }
  231. .emptyView {
  232. height: 180rpx;
  233. padding-bottom: constant(safe-area-inset-bottom);
  234. padding-bottom: env(safe-area-inset-bottom);
  235. }
  236. .bottomView {
  237. background-color: #FFFFFF;
  238. width: 100%;
  239. height: 120rpx;
  240. position: fixed;
  241. bottom: 0rpx;
  242. display: flex;
  243. justify-content: space-around;
  244. align-items: center;
  245. padding-bottom: constant(safe-area-inset-bottom);
  246. padding-bottom: env(safe-area-inset-bottom);
  247. }
  248. .bottomImg {
  249. background-color: #FFFFFF;
  250. border: #FF4F00 1rpx solid;
  251. margin: 23rpx 30rpx;
  252. height: 74rpx;
  253. width: 50%;
  254. border-radius: 37rpx;
  255. color: #FF4F00;
  256. font-size: 30rpx;
  257. text-align: center;
  258. line-height: 74rpx;
  259. align-items: center;
  260. display: flex;
  261. justify-content: center;
  262. }
  263. .bottomImg2 {
  264. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  265. margin: 23rpx 30rpx;
  266. height: 74rpx;
  267. width: 50%;
  268. border-radius: 37rpx;
  269. color: #FFFFFF;
  270. font-size: 30rpx;
  271. text-align: center;
  272. }
  273. </style>