viewRefund.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view class="">
  3. <u-navbar
  4. title="退款/售后"
  5. :placeholder="true"
  6. :autoBack="true"
  7. :safeAreaInsetTop="true"
  8. >
  9. </u-navbar>
  10. <view class="page-wrap">
  11. <view class="status">{{pageData.status|filterRefundState}}</view>
  12. <view class="box">
  13. <view class="order-product page-wrap">
  14. <view class="product u-flex" v-for="(item,index) in pageData.goodsList" :key="item.id">
  15. <u--image :showLoading="true" :src="item.mainImg" width="180rpx" height="180rpx"></u--image>
  16. <view class="text">
  17. <view class="up">
  18. <view class="name ellipsis-2">{{item.goodsName}}</view>
  19. <view class="info">
  20. {{item.specification}}
  21. {{item.unit}}
  22. </view>
  23. </view>
  24. <view class="down u-flex u-row-between">
  25. <view class="left">
  26. <text class="price">¥ <text class="price-num">{{item.price}}</text></text>
  27. </view>
  28. <u-number-box v-model="item.quantity" :disabled="true" @change="changeQuantity(index, $event)" integer></u-number-box>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="box order-info page-wrap">
  35. <view class="order-info-item" v-for="(item,index) in orderInfo" :key="index">
  36. <text class="til">{{item.til}}</text>
  37. <text class="con">
  38. <text v-if="item.isMoney">¥</text>
  39. {{pageData[item.con]}}
  40. </text>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. orderId:'',
  51. pageData:{},
  52. orderInfo:[
  53. {til:'订单编号',con:'orderNum'},
  54. {til:'申请金额',con:'orderAmount',isMoney:true},
  55. // {til:'申请件数',con:'quantity'},
  56. {til:'申请原因',con:'refundReason'},
  57. {til:'问题描述',con:'remark'},
  58. ]
  59. }
  60. },
  61. onShow() {
  62. this.getData()
  63. },
  64. onLoad(page) {
  65. this.orderId =page.orderId
  66. },
  67. methods: {
  68. getData(){
  69. this.$u.api.refundInfo({orderId:this.orderId}).then(res=>{
  70. this.pageData = res.data
  71. console.log('res',res.data);
  72. }).catch(err=>{
  73. console.log('refundInfo',err);
  74. })
  75. }
  76. }
  77. }
  78. </script>
  79. <style>
  80. page{
  81. background-color: #F5F5F5;
  82. }
  83. </style>
  84. <style lang="scss" scoped>
  85. .status{
  86. text-align: center;
  87. font-size: 32rpx;
  88. font-weight: 600;
  89. color: #FFB100;
  90. line-height: 45rpx;
  91. margin-bottom: 20rpx;
  92. }
  93. .box{
  94. background-color: #fff;
  95. border-radius: 8rpx;
  96. margin-bottom: 20rpx;
  97. }
  98. .order-info{
  99. .order-info-item{
  100. font-size: 30rpx;
  101. font-weight: 400;
  102. color: #333333;
  103. line-height: 42rpx;
  104. padding: 30rpx 20rpx;
  105. &:not(:last-child){
  106. border-bottom: 0.5px solid #eee;
  107. }
  108. .til{
  109. font-size: 24rpx;
  110. font-weight: 400;
  111. color: #999999;
  112. margin-right: 90rpx;
  113. }
  114. }
  115. }
  116. </style>