index.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <template>
  2. <page :nav="false" title="邀新得万元现金" ref="pageRef" light bgColor="">
  3. <view
  4. class="pagae-nav"
  5. :style="{
  6. paddingTop: statusBarHeight + 'px',
  7. background: headerBg,
  8. color: headerColor
  9. }"
  10. >
  11. <view class="flex-align-center relative" style="height: 80rpx">
  12. <text class="cuIcon-back back" @click.stop="back"></text>
  13. <view class="title line-ellipsis">邀新得万元现金</view>
  14. </view>
  15. </view>
  16. <view
  17. class="top"
  18. :style="
  19. 'background-image:url(' + ossurl.mine.pulluser.top + ')'
  20. "
  21. >
  22. <view class="btnBox flex">
  23. <view class="marginR12 relative" style="width: 331rpx; height: 88rpx">
  24. <button open-type="share" class="shareBtn btn-clear">分享邀请链接</button>
  25. </view>
  26. <view class="inline" style="width: 331rpx; height: 88rpx">
  27. <view class="shareBtn" @click="share()">面对面邀请</view>
  28. </view>
  29. </view>
  30. <view class="rule" @click.stop="rule()">
  31. <image :src="ossurl.mine.pulluser.rule" />
  32. </view>
  33. </view>
  34. <view
  35. class="bottom relative"
  36. :style="
  37. 'background-image:url(' + ossurl.mine.pulluser.bottom + ')'
  38. "
  39. >
  40. <view class="getMoney" @click="getMoney()">
  41. <view class="label">可提现金额</view>
  42. <view class="numBox">
  43. ¥
  44. <view class="num">{{ userData.currentCommissionAmount }}</view>
  45. </view>
  46. </view>
  47. <view class="myBox">
  48. <view class="title">
  49. <image :src="ossurl.mine.pulluser.title" />
  50. </view>
  51. <view class="dataBox">
  52. <view class="item" @click="introMessage()">
  53. <view class="title">邀请人数</view>
  54. {{ userData.promotionNum }}
  55. <text class="bottom-right">人</text>
  56. </view>
  57. <view class="item">
  58. <view class="title">邀请奖励</view>
  59. {{ userData.totalCommissionAmount }}
  60. <text class="bottom-right">元</text>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. <rule-dialog ref="ruleRef" />
  66. <poster
  67. ref="posterRef"
  68. :tip="tip"
  69. :imgs="[{ cover: ossurl.common.userShare }]"
  70. page="pages/award/index"
  71. :userId="user.username"
  72. />
  73. <people-record ref="peopleRecordRef" />
  74. </page>
  75. </template>
  76. <script>
  77. import resource from '@/utils/resource'
  78. import ossurl from '@/utils/ossurl'
  79. import ruleDialog from './rule_dialog.vue'
  80. import store from '@/store'
  81. import poster from '../weal_detail/poster.vue'
  82. import peopleRecord from './people_record.vue'
  83. export default {
  84. components: { ruleDialog, poster, peopleRecord },
  85. data() {
  86. return {
  87. resource,
  88. ossurl,
  89. userData: {},
  90. tip: '',
  91. scrollTop: 0
  92. }
  93. },
  94. onLoad() {
  95. this.$service.wallet.getPullNewUserDetails().then((res) => {
  96. this.userData = res
  97. })
  98. },
  99. onShareAppMessage(res) {
  100. if (this.$common.isLogin()) {
  101. const user = store.getters.user
  102. return {
  103. title: `燚火漫域,新人优惠不停!`,
  104. path: '/pages/award/index?pid=' + user.username,
  105. imageUrl: ossurl.common.userShare
  106. }
  107. }
  108. return {
  109. title: `燚火漫域,新人优惠不停!`,
  110. path: '/pages/award/index'
  111. }
  112. },
  113. computed: {
  114. user() {
  115. return this.$store.state.userInfo
  116. },
  117. headerColor() {
  118. return this.scrollTop > 0 ? '#000' : '#fff'
  119. },
  120. headerBg() {
  121. return this.scrollTop > 0 ? '#fff' : '#000'
  122. },
  123. statusBarHeight() {
  124. if (this.$store.state.systemInfo) {
  125. return this.$store.state.systemInfo.statusBarHeight
  126. }
  127. return 20
  128. }
  129. },
  130. onPageScroll(e) {
  131. this.scrollTop = e.scrollTop
  132. },
  133. methods: {
  134. getMoney() {
  135. this.$router.push('withdraw')
  136. },
  137. share() {
  138. this.tip = `快来和${this.user.nickname}一起免费领手办吧~`
  139. this.$refs.posterRef.share()
  140. },
  141. rule() {
  142. this.$refs.ruleRef.show()
  143. },
  144. introMessage() {
  145. this.$refs.peopleRecordRef.show()
  146. },
  147. back(){
  148. uni.navigateBack({
  149. delta:1
  150. })
  151. }
  152. }
  153. }
  154. </script>
  155. <style>
  156. page {
  157. background: #1d1cba;
  158. }
  159. </style>
  160. <style lang="scss" scoped>
  161. .pagae-nav {
  162. position: fixed;
  163. left: 0;
  164. top: 0;
  165. width: 100%;
  166. z-index: 100;
  167. align-items: center;
  168. .title {
  169. font-size: 30rpx;
  170. font-weight: bold;
  171. text-align: center;
  172. line-height: 72rpx;
  173. width: 500rpx;
  174. }
  175. .back {
  176. z-index: 1800;
  177. font-size: 32rpx;
  178. line-height: 32rpx;
  179. position: absolute;
  180. left: 20rpx;
  181. top: 24rpx;
  182. }
  183. }
  184. .top {
  185. height: 1120rpx;
  186. background-size: 100% 100%;
  187. position: relative;
  188. .btnBox {
  189. height: 64rpx;
  190. margin: 0 auto 80rpx;
  191. position: absolute;
  192. bottom: 0rpx;
  193. left: 30rpx;
  194. .shareBtn {
  195. font-size: 32rpx;
  196. font-family: Source Han Sans, Source Han Sans;
  197. font-weight: bold;
  198. color: #000000;
  199. line-height: 64rpx;
  200. width: 318rpx;
  201. height: 64rpx;
  202. background: #fec433;
  203. border-radius: 178rpx 178rpx 178rpx 178rpx;
  204. text-align: center;
  205. }
  206. }
  207. }
  208. .middle {
  209. width: 688rpx;
  210. height: 354rpx;
  211. margin: 40rpx auto;
  212. }
  213. .bottom {
  214. height: 586rpx;
  215. margin: 0 auto;
  216. background-size: 100% 100%;
  217. padding: 70rpx;
  218. .getMoney {
  219. width: 623rpx;
  220. height: 74rpx;
  221. background: rgba(182, 182, 182, 0.31);
  222. border-radius: 74rpx;
  223. padding: 8rpx;
  224. display: flex;
  225. align-items: center;
  226. justify-content: space-between;
  227. .label {
  228. width: 214rpx;
  229. height: 58rpx;
  230. background: #000000;
  231. border-radius: 58rpx;
  232. color: #fff;
  233. line-height: 58rpx;
  234. text-align: center;
  235. }
  236. .numBox {
  237. font-size: 28rpx;
  238. font-family: Source Han Sans, Source Han Sans;
  239. font-weight: 350;
  240. color: #000000;
  241. display: flex;
  242. align-items: center;
  243. padding-right: 50rpx;
  244. .num {
  245. font-size: 32rpx;
  246. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  247. font-weight: bold;
  248. color: #000000;
  249. margin-left: 20rpx;
  250. }
  251. }
  252. }
  253. }
  254. .rule {
  255. position: absolute;
  256. top: 420rpx;
  257. right: 60rpx;
  258. image {
  259. width: 84rpx;
  260. height: 62rpx;
  261. }
  262. }
  263. .myBox {
  264. height: 358rpx;
  265. background: rgba(182, 182, 182, 0.31);
  266. border-radius: 16rpx 16rpx 16rpx 16rpx;
  267. padding: 14rpx;
  268. margin-top: 14rpx;
  269. .title {
  270. text-align: center;
  271. padding: 10rpx 0;
  272. image {
  273. width: 262rpx;
  274. height: 64rpx;
  275. }
  276. }
  277. .dataBox {
  278. background: #f5f1e6;
  279. border-radius: 16rpx 16rpx 16rpx 16rpx;
  280. display: flex;
  281. padding: 32rpx;
  282. text-align: center;
  283. margin-top: 30rpx;
  284. .item {
  285. flex: 1;
  286. font-size: 48rpx;
  287. font-weight: bold;
  288. color: #9e9e9e;
  289. .bottom-right {
  290. font-size: 24rpx;
  291. }
  292. }
  293. .title {
  294. padding-bottom: 30rpx;
  295. font-size: 24rpx;
  296. font-family: Source Han Sans, Source Han Sans;
  297. font-weight: 350;
  298. color: #000000;
  299. line-height: 34rpx;
  300. }
  301. }
  302. }
  303. </style>