index.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="page">
  3. <view class="flex-row justify-between top">
  4. <view class="flex-col justify-start item">
  5. <view class="flex-row justify-center">
  6. <image class="image" src="/static/order/ud16.png"></image>
  7. </view>
  8. <view class="title">
  9. <text>奖励金额</text>
  10. </view>
  11. <view class="title1">
  12. <text>¥1122</text>
  13. </view>
  14. </view>
  15. <view class="flex-col justify-start item1">
  16. <view class="flex-row justify-center">
  17. <image class="image" src="/static/order/ud15.png"></image>
  18. </view>
  19. <view class="title">
  20. <text>注册人数</text>
  21. </view>
  22. <view class="title1">
  23. <text>11552</text>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- <view class="btn" @click="goStatisticalPanel">-->
  28. <!-- <text>去提现</text>-->
  29. <!-- </view>-->
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. components: {
  35. },
  36. data() {
  37. return {
  38. };
  39. },
  40. onLoad() {
  41. },
  42. methods: {
  43. goStatisticalPanel(){
  44. uni.navigateTo({
  45. url:'/myPages/statisticalPanel/index'
  46. })
  47. }
  48. }
  49. }
  50. </script>
  51. <style scoped lang="scss">
  52. @import '../../common/css/common.css';
  53. @import './index.rpx.scss';
  54. </style>