product.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view class="uni-flex uni-column order-items jz_incomeProduct" style="margin-top: 30upx;">
  3. <view class="uni-flex uni-row uni-flex-item order-shop-name order-boder">
  4. <view class="orderNo">
  5. {{moneyLog.orderNo}}
  6. </view>
  7. <view class="uni-flex uni-flex-item order-status" style="color: #000000;">
  8. {{moneyLog.buyer}}
  9. </view>
  10. </view>
  11. <view class="uni-flex uni-row order-item align-items" v-for="(item,key) in items" :key="key">
  12. <view class="uni-flex uni-flex-item pic item-padding">
  13. <image mode="widthFix" :src="item.pic"></image>
  14. </view>
  15. <view class="uni-flex uni-column uni-flex-item3 item-padding">
  16. <text class="uni-text order-title">{{item.title}}</text>
  17. <text class="uni-text order-specs">{{item.productSpecsStr}}</text>
  18. <text class="uni-text order-specs">分润</text>
  19. </view>
  20. <view class="uni-flex uni-column uni-flex-item item-padding">
  21. <text class="uni-text price-red">¥{{item.totalPrice}}</text>
  22. <text class="uni-text">x{{item.amount}}</text>
  23. <text class="uni-text price-red">¥{{item.profit}}</text>
  24. </view>
  25. </view>
  26. <view class="incomeAll uni-flex uni-column" style="background: #F4F5F6;">
  27. <view class="uni-flex space-between">
  28. <view class="uni-flex order-line">
  29. <text class="allCount">共{{allNum}}件商品</text>
  30. </view>
  31. <view class="uni-flex order-line">
  32. 合计:<text class="price-red allPrice">¥{{moneyLog.subTotal}}</text>
  33. </view>
  34. </view>
  35. <view class="uni-flex space-between">
  36. <view class="uni-flex order-line">
  37. {{moneyLog.createDate}}
  38. </view>
  39. <view class="uni-flex order-line">
  40. <text class="allCount">分润</text>:<text class="price-red allPrice">¥{{moneyLog.amount}}</text>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="uni-flex order-line item-padding order-btn" style="height: 10upx;">
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default {
  50. data() {
  51. return {
  52. id: '',
  53. userid: '',
  54. moneyLog: {},
  55. items: []
  56. }
  57. },
  58. computed: {
  59. allNum() {
  60. let num = 0;
  61. for (let i = 0; i < this.items.length; i++) {
  62. num += this.items[i].amount;
  63. }
  64. return num
  65. }
  66. },
  67. onLoad(e) {
  68. this.id = e.id;
  69. this.userid = e.userid;
  70. this.getData();
  71. },
  72. methods: {
  73. getData() {
  74. uni.request({
  75. url: this.webUrl + 'GetMoneyLogView',
  76. method: 'POST',
  77. header: {
  78. 'content-type': 'application/x-www-form-urlencoded'
  79. },
  80. data: {
  81. userid: this.userid,
  82. id: this.id
  83. },
  84. success: res => {
  85. if (res.data != null) {
  86. this.moneyLog = res.data.data;
  87. this.items = res.data.items;
  88. }
  89. },
  90. fail: () => {},
  91. complete: () => {}
  92. });
  93. }
  94. }
  95. }
  96. </script>
  97. <style>
  98. .order-items .order-boder .orderNo {
  99. width: 550upx;
  100. }
  101. </style>