myPoint.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="jz_myPoint uni-flex uni-column">
  3. <view class="myPint_header uni-flex uni-column">
  4. <view class="t">账户积分</view>
  5. <view class="p">{{integral}}</view>
  6. </view>
  7. <view class="uni-list uni-flex uni-column">
  8. <view class="uni-list-cell " hover-class="uni-list-cell-hover" @click="goCashOut">
  9. <view class="uni-list-cell-navigate uni-navigate-right">
  10. <view class="uni-flex align-items">
  11. <image src="../../../static/img01.png"></image>
  12. <text>申请提现</text>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="uni-list-cell " hover-class="uni-list-cell-hover" @click="goDetail">
  17. <view class="uni-list-cell-navigate uni-navigate-right">
  18. <view class="uni-flex align-items">
  19. <image src="../../../static/img02.png"></image>
  20. <text>提现明细</text>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="myPint_pace"></view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. integral: ''
  33. }
  34. },
  35. onLoad(e) {
  36. this.integral = e.integral;
  37. },
  38. methods: {
  39. goCashOut() {
  40. uni.navigateTo({
  41. url: 'cashOut?integral='+this.integral
  42. })
  43. },
  44. goDetail() {
  45. uni.navigateTo({
  46. url: 'income'
  47. })
  48. }
  49. }
  50. }
  51. </script>
  52. <style>
  53. </style>