invite.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <view class="box">
  3. <view class="header">
  4. <image :src="detailData.tSSetting.ruleImg" mode="widthFix" 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. shareID:'',
  81. }
  82. },
  83. onLoad() {
  84. this.uidStr = uni.getStorageSync("logodata").uid.replace(/\-/g, "");
  85. this.shareID=uni.getStorageSync("logodata").uid;
  86. console.log("shareID==="+this.shareID)
  87. },
  88. onShow() {
  89. this.getDetailData();
  90. },
  91. methods: {
  92. onShareAppMessage: function() {
  93. return {
  94. title: '车蓝图4S店养车服务',
  95. path: 'pages/homePage/homePage?scene=' + this.shareID,
  96. imageUrl: '',
  97. desc: '',
  98. content: ''
  99. }
  100. },
  101. guize() {
  102. uni.navigateTo({
  103. url: 'guize'
  104. })
  105. },
  106. getDetailData() {
  107. uni.showLoading({
  108. title: '加载中'
  109. })
  110. let url = 'worldKeepCar/worldDistribution/queryDistributionIndexDetail',
  111. params = {
  112. }
  113. this.$http(url, params, 'GET').then(res => {
  114. uni.hideLoading();
  115. var data = res.data
  116. // 处理 undefined和null转为空白字符串
  117. for (const key in data) {
  118. data[key] = this.$praseStrEmpty(data[key])
  119. }
  120. this.detailData = data
  121. this.arr = this.detailData.recentEarnings
  122. })
  123. },
  124. gonavigateTo(url) {
  125. uni.navigateTo({
  126. url: url
  127. })
  128. }
  129. },
  130. // 下拉刷新 上拉加载更多
  131. onPullDownRefresh() {
  132. this.getDetailData()
  133. setTimeout(function() {
  134. uni.stopPullDownRefresh();
  135. }, 1000);
  136. },
  137. // onReachBottom() {
  138. // this.page++;
  139. // this.getItemData()
  140. // },
  141. }
  142. </script>
  143. <style scoped>
  144. .box {
  145. min-height: 100vh;
  146. background: #F4F5F7;
  147. }
  148. .header {
  149. width: 100%;
  150. position: relative;
  151. }
  152. .bar {
  153. width: 100%;
  154. }
  155. .guizeBtn {
  156. position: absolute;
  157. right: 0;
  158. top: 48rpx;
  159. width: 169rpx;
  160. height: 56rpx;
  161. }
  162. .sumBg {
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: center;
  166. margin: 10rpx 24rpx 20rpx;
  167. padding: 36rpx 50rpx;
  168. background-color: #FFFFFF;
  169. border-radius: 10rpx;
  170. }
  171. .viewBg {
  172. display: flex;
  173. flex-direction: column;
  174. align-items: center;
  175. background-color: #FFFFFF;
  176. }
  177. .money {
  178. font-size: 38rpx;
  179. color: #000000;
  180. font-weight: bold;
  181. }
  182. .moneyTitle {
  183. font-size: 28rpx;
  184. color: #666666;
  185. }
  186. .line {
  187. width: 1rpx;
  188. height: 73rpx;
  189. background-color: #EEEEEE;
  190. }
  191. .mingxiBg {
  192. margin: 0rpx 24rpx;
  193. background-color: #FFFFFF;
  194. border-radius: 10rpx;
  195. }
  196. .mingxi {
  197. background-image: url('http://123.56.219.146:10086/keepCar/jqsy2.png');
  198. background-size: 100%;
  199. background-repeat: no-repeat;
  200. padding-top: 89rpx;
  201. }
  202. .emptyImg {
  203. height: 493rpx;
  204. width: 100%;
  205. }
  206. .itemBg {
  207. height: 98rpx;
  208. margin: 0 20rpx;
  209. display: flex;
  210. justify-content: space-between;
  211. align-items: center;
  212. }
  213. .nickName {
  214. font-size: 30rpx;
  215. color: #3C3C3C;
  216. width: 30%;
  217. margin: 0 15rpx;
  218. overflow: hidden;
  219. text-overflow: ellipsis;
  220. white-space: nowrap;
  221. }
  222. .time {
  223. font-size: 30rpx;
  224. color: #999999;
  225. width: 30%;
  226. }
  227. .jine {
  228. font-size: 32rpx;
  229. color: #FF4F00;
  230. font-weight: bold;
  231. margin: 0 15rpx;
  232. width: 20%;
  233. text-align: right;
  234. }
  235. .moreView {
  236. height: 92rpx;
  237. display: flex;
  238. justify-content: center;
  239. align-items: center;
  240. }
  241. .emptyView {
  242. height: 180rpx;
  243. padding-bottom: constant(safe-area-inset-bottom);
  244. padding-bottom: env(safe-area-inset-bottom);
  245. }
  246. .bottomView {
  247. background-color: #FFFFFF;
  248. width: 100%;
  249. height: 120rpx;
  250. position: fixed;
  251. bottom: 0rpx;
  252. display: flex;
  253. justify-content: space-around;
  254. align-items: center;
  255. padding-bottom: constant(safe-area-inset-bottom);
  256. padding-bottom: env(safe-area-inset-bottom);
  257. }
  258. .bottomImg {
  259. background-color: #FFFFFF;
  260. border: #FF4F00 1rpx solid;
  261. margin: 23rpx 30rpx;
  262. height: 74rpx;
  263. width: 50%;
  264. border-radius: 37rpx;
  265. color: #FF4F00;
  266. font-size: 30rpx;
  267. text-align: center;
  268. line-height: 74rpx;
  269. align-items: center;
  270. display: flex;
  271. justify-content: center;
  272. }
  273. .bottomImg2 {
  274. background: linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  275. margin: 23rpx 30rpx;
  276. height: 74rpx;
  277. width: 50%;
  278. border-radius: 37rpx;
  279. color: #FFFFFF;
  280. font-size: 30rpx;
  281. text-align: center;
  282. }
  283. </style>