spreadCost.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <view class="uni-flex uni-column">
  3. <view class="spreadCost-wrap uni-flex justify-content align-items uni-column">
  4. <view class="uni-flex-item">推广总额</view>
  5. <view class="uni-flex-item spreadCost">0.00</view>
  6. </view>
  7. <view class="uni-list">
  8. <view class="uni-list-cell">
  9. <view class="uni-list-cell-navigate">
  10. 未确认推广费:<text class="number">¥{{count1}}</text>
  11. </view>
  12. </view>
  13. <view class="uni-list-cell">
  14. <view class="uni-list-cell-navigate">
  15. 已确认推广费:<text class="number">¥{{count2}}</text>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import {
  23. mapState,
  24. mapMutations
  25. } from 'vuex'
  26. export default {
  27. computed: {
  28. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  29. },
  30. data() {
  31. return {
  32. user: {},
  33. count1: 0,
  34. count2: 0,
  35. }
  36. },
  37. onLoad() {
  38. this.init();
  39. },
  40. methods: {
  41. init() {
  42. if (!this.hasLogin) {
  43. uni.navigateTo({
  44. url: '../login/login',
  45. });
  46. } else {
  47. this.user = JSON.parse(this.jyyUser);
  48. this.getData();
  49. }
  50. },
  51. getData(){
  52. uni.request({
  53. url: this.webUrl + 'MyOrdersCount',
  54. method: 'POST',
  55. data: {
  56. userid: this.user.id
  57. },
  58. header: {
  59. 'content-type': 'application/x-www-form-urlencoded'
  60. },
  61. success: res => {
  62. this.count1 = res.data.result.resultInfo;
  63. this.count2 = res.data.result.resultInfo2;
  64. },
  65. fail: () => {},
  66. complete: () => {}
  67. });
  68. }
  69. }
  70. }
  71. </script>
  72. <style>
  73. .spreadCost-wrap {
  74. height: 130upx;
  75. text-align: center;
  76. line-height: 80upx;
  77. background: #FFFFFF;
  78. }
  79. .uni-list-cell:after {
  80. background: none;
  81. }
  82. .spreadCost-wrap .spreadCost {
  83. margin-top: -30upx;
  84. }
  85. .spreadCost-wrap .number {
  86. margin-right: 20upx;
  87. }
  88. .spreadCostBtn {
  89. margin-top: 15upx;
  90. width: 95%;
  91. text-align: center;
  92. color: #FFFFFF;
  93. background: #4cda64;
  94. }
  95. </style>