jifen-qianbao.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <template>
  2. <view class="content">
  3. <u-navbar title="积分钱包" :autoBack="true" bgColor="rgba(0,0,0,0)" :fixed="true" :placeholder="true"
  4. @rightClick="torule">
  5. <view class="u-nav-slot" slot="right">
  6. <text>规则</text>
  7. </view>
  8. </u-navbar>
  9. <image src="static/jifen-bg.png" mode="aspectFill" class="jinfen-bg"></image>
  10. <view class="top hflex acenter">
  11. <view class="top-item hflex aend fwrap" @click="tojifenlist">
  12. <text class="num">{{user.integral}}</text>
  13. <view class="hflex acenter">
  14. <text class="label">积分余额</text>
  15. <u-icon name="arrow-right" color="#000000" size="12"></u-icon>
  16. </view>
  17. </view>
  18. <view class="top-item hflex aend fwrap">
  19. <text class="num">{{user.integral_sum}}</text>
  20. <text class="label">积分总额</text>
  21. </view>
  22. </view>
  23. <view class="box-bg">
  24. <view class="box">
  25. <view class="title">任务列表</view>
  26. <view class="cell hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  27. <image src="static/jifen1.png" mode="aspectFill"></image>
  28. <view class="cell-center vflex">
  29. <view class="name">{{item.name}}</view>
  30. <view class="center-bottom hflex acenter">
  31. <image src="static/jifen.png" mode="aspectFill"></image>
  32. <text>积分+{{item.integral}}</text>
  33. </view>
  34. </view>
  35. <view class="btn" @click="totask(item)" v-if="item.status == 'pending'">去完成</view>
  36. <view class="btn" @click="totask(item)" v-else-if="item.status == 'finished'">领取奖励</view>
  37. <view class="btn" v-else-if="item.status == 'received'">已领取</view>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import $api from '@/static/js/api.js'
  45. export default {
  46. data() {
  47. return {
  48. user: {},
  49. list: [],
  50. page: 1,
  51. last_page: 1,
  52. }
  53. },
  54. onLoad() {
  55. this.getuser()
  56. this.getlist()
  57. },
  58. methods: {
  59. totask(item) {
  60. var _this = this
  61. if (item.status == 'pending') {
  62. if (item.source_type == 'share_post') {
  63. uni.navigateTo({
  64. url: '/pageA/jingxuan-list?type=article'
  65. })
  66. } else if (item.source_type == 'invite') {
  67. uni.navigateTo({
  68. url: '/pageC/invite'
  69. })
  70. } else if (item.source_type == 'create_post') {
  71. uni.navigateTo({
  72. url: '/pageA/add-luntan'
  73. })
  74. } else if (item.source_type == 'browse') {
  75. uni.switchTab({
  76. url: '/pages/luntan/index'
  77. })
  78. } else if (item.source_type == 'like') {
  79. uni.switchTab({
  80. url: '/pages/index/index'
  81. })
  82. } else if (item.source_type == 'vip') {
  83. uni.navigateTo({
  84. url: '/pageC/vip'
  85. })
  86. } else if (item.source_type == 'finish_info') {
  87. uni.navigateTo({
  88. url: '/pageC/userinfo'
  89. })
  90. }
  91. } else {
  92. $api.req({
  93. url: 'task/' + item.id + '/receive',
  94. method: 'post'
  95. }, function(res) {
  96. if (res.code == 10000) {
  97. uni.$u.toast(res.msg)
  98. setTimeout(() => {
  99. _this.list = []
  100. _this.getlist()
  101. })
  102. }
  103. })
  104. }
  105. },
  106. getlist() {
  107. var _this = this
  108. $api.req({
  109. url: 'task',
  110. data: {
  111. is_page: 0,
  112. }
  113. }, function(res) {
  114. if (res.code == 10000) {
  115. _this.list = res.data
  116. }
  117. })
  118. },
  119. torule() {
  120. uni.navigateTo({
  121. url: '/pageC/xieyi?type=rule'
  122. })
  123. },
  124. tojifenlist() {
  125. uni.navigateTo({
  126. url: '/pageC/jifen-list'
  127. })
  128. },
  129. getuser() {
  130. var _this = this
  131. $api.req({
  132. url: 'user/info',
  133. method: 'GET'
  134. }, function(res) {
  135. if (res.code == 10000) {
  136. _this.user = res.data
  137. }
  138. })
  139. }
  140. }
  141. }
  142. </script>
  143. <style lang="scss">
  144. .content::v-deep {
  145. min-height: 100vh;
  146. background: unset;
  147. .u-navbar__content__title {
  148. font-weight: bold;
  149. }
  150. .jinfen-bg {
  151. position: absolute;
  152. top: 0;
  153. left: 0;
  154. width: 100%;
  155. height: 500rpx;
  156. z-index: -1;
  157. }
  158. .box-bg {
  159. background: #f5f5f5;
  160. margin-top: 200rpx;
  161. height: calc(100vh - 500rpx);
  162. position: relative;
  163. .box {
  164. position: absolute;
  165. top: -142rpx;
  166. left: 28rpx;
  167. width: 694rpx;
  168. // height: 648rpx;
  169. background: #FFFFFF;
  170. border-radius: 16rpx;
  171. box-sizing: border-box;
  172. padding: 28rpx 24rpx;
  173. .title {
  174. font-size: 32rpx;
  175. font-family: PingFangSC, PingFang SC;
  176. font-weight: 500;
  177. color: #222222;
  178. }
  179. .cell {
  180. margin: 32rpx 0 0;
  181. image {
  182. width: 100rpx;
  183. height: 100rpx;
  184. margin-right: 24rpx;
  185. }
  186. .cell-center {
  187. flex: 1;
  188. .name {
  189. font-size: 32rpx;
  190. font-family: PingFangSC, PingFang SC;
  191. font-weight: 400;
  192. color: #333333;
  193. }
  194. .center-bottom {
  195. padding: 10rpx 0 0;
  196. image {
  197. width: 28rpx;
  198. height: 28rpx;
  199. margin: 0;
  200. }
  201. text {
  202. padding-left: 8rpx;
  203. font-size: 22rpx;
  204. font-family: SFPro, SFPro;
  205. font-weight: 400;
  206. color: #F0A61C;
  207. }
  208. }
  209. }
  210. .btn {
  211. margin: 0 0 0 24rpx;
  212. width: 140rpx;
  213. height: 56rpx;
  214. border-radius: 30rpx;
  215. border: 1rpx solid #00B0B0;
  216. font-size: 26rpx;
  217. font-family: PingFangSC, PingFang SC;
  218. font-weight: 400;
  219. color: #00B0B0;
  220. line-height: 56rpx;
  221. text-align: center;
  222. }
  223. }
  224. }
  225. }
  226. .top {
  227. padding: 84rpx 18rpx 50rpx;
  228. .top-item {
  229. padding-right: 62rpx;
  230. .num {
  231. font-size: 56rpx;
  232. font-family: JDZhengHT, JDZhengHT;
  233. font-weight: 400;
  234. color: #00B0B0;
  235. // line-height: 66rpx;
  236. }
  237. .label {
  238. font-size: 24rpx;
  239. font-family: PingFangSC, PingFang SC;
  240. font-weight: 400;
  241. color: #222222;
  242. // padding: 0 10rpx 10rpx 14rpx;
  243. }
  244. }
  245. }
  246. .u-nav-slot {
  247. text {
  248. font-size: 28rpx;
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 400;
  251. color: #222222;
  252. }
  253. }
  254. }
  255. </style>