orderRefund.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <view class="uni-flex uni-column orderInfo ">
  3. <view class="uni-flex uni-column order-items">
  4. <view class="uni-flex uni-row uni-flex-item order-shop-name order-boder">
  5. {{orderInfo.shopName}}
  6. </view>
  7. <view class="uni-flex uni-row order-item" v-for="(item,key) in orderInfo.items" :key="key">
  8. <view class="uni-flex uni-flex-item pic item-padding">
  9. <image mode="widthFix" :src="item.pic"></image>
  10. </view>
  11. <view class="uni-flex uni-column uni-flex-item3 item-padding">
  12. <text class="uni-text order-title">{{item.title}}</text>
  13. <text class="uni-text order-specs">{{item.productSpecsStr}}</text>
  14. </view>
  15. <view class="uni-flex uni-column uni-flex-item item-padding">
  16. <text class="uni-text">¥{{item.price}}</text>
  17. <text class="uni-text">x{{item.amount}}</text>
  18. </view>
  19. </view>
  20. <view class="uni-flex order-line item-padding order-boder order-line-small">
  21. <view class="uni-flex uni-flex-item">商品总价</view>
  22. <view class="uni-flex uni-flex-item justify-flex-end">¥{{orderInfo.totalPrice}}</view>
  23. </view>
  24. <view class="uni-flex order-line item-padding order-boder order-line-small">
  25. <view class="uni-flex uni-flex-item">运费(快递)</view>
  26. <view class="uni-flex uni-flex-item justify-flex-end">¥{{orderInfo.expressCost}}</view>
  27. </view>
  28. <view class="uni-flex order-line item-padding totalPrice ">
  29. <view class="uni-flex uni-flex-item">订单总价</view>
  30. <view class="uni-flex uni-flex-item justify-flex-end color-f40">¥{{totalPrice}}</view>
  31. </view>
  32. </view>
  33. <view class="uni-flex uni-column oderinfo-other">
  34. <view class="uni-flex order-line-small item-padding order-boder">
  35. 订单编号:{{orderInfo.orderNo}}
  36. </view>
  37. <view class="uni-flex order-line-small item-padding order-boder">
  38. 创建时间:{{orderInfo.createDate}}
  39. </view>
  40. </view>
  41. <view v-if="orderInfo.refundState == 0" class="uni-flex uni-flex-item order oderinfo-other">
  42. <view class="uni-flex uni-flex-item uni-row order-address-box">
  43. <view class="uni-flex order-address-ico">
  44. <image src="../../../static/cart/location.png" mode="widthFix"></image>
  45. </view>
  46. <view v-if="orderInfo.orderStatus==2" class="uni-flex uni-column uni-flex-item4" @click="showPopup">
  47. <view class="uni-flex uni-flex-item">仅退款</view>
  48. <view class="uni-flex uni-flex-item">未收到货或商家协商同意前提下</view>
  49. </view>
  50. <view v-if="orderInfo.orderStatus==3" class="uni-flex uni-column uni-flex-item4" @click="showPopup">
  51. <view class="uni-flex uni-flex-item">退款退货</view>
  52. <view class="uni-flex uni-flex-item">已收到货,需要退款退货</view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="uni-flex uni-column order-refundLogs">
  57. <view :class="refundLog.Mode=='1'? 'buyer': 'saler'" class="uni-flex uni-column " v-for="refundLog in refundLogs"
  58. :key="refundLog">
  59. <view class="uni-flex uni-flex-item uni-row order-refundLog-title">
  60. <view class="uni-flex uni-flex-item4">{{refundLog.Name}}</view>
  61. <view class="uni-flex uni-flex-item1 order-refundLog-date">{{refundLog.CreateDate}}</view>
  62. </view>
  63. <view class="uni-flex uni-column order-refundLog">
  64. <view class="uni-flex uni-flex-item uni-row">
  65. {{refundLog.Step}}
  66. </view>
  67. <view class="uni-flex uni-flex-item uni-row order-refundLog-text">
  68. {{refundLog.Text}}
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. <view class="uni-flex space"></view>
  74. <refund-popup :show="hasShowPop" :user="user" :refunds="refunds" :express="express" :orderInfo="orderInfo" v-on:getData="getData"
  75. v-on:hidePopup="hidePopup"></refund-popup>
  76. <view v-if="orderInfo.refundState > 0" class="uni-flex uni-row footer justify-flex-end">
  77. <view v-if="orderInfo.refundState==1" class="btn">
  78. 等待处理
  79. </view>
  80. <view v-if="orderInfo.refundState==2" class="btn">
  81. 成功退款
  82. </view>
  83. <view v-if="orderInfo.refundState==3" class="btn" @click="reapply">
  84. 重新申请
  85. </view>
  86. </view>
  87. </view>
  88. </template>
  89. <script>
  90. import order from '../../../common/order.js';
  91. import refundPopup from '../../../components/uni-popup-refund.vue';
  92. import {
  93. mapState,
  94. mapMutations
  95. } from 'vuex'
  96. export default {
  97. components: {
  98. refundPopup
  99. },
  100. computed: {
  101. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser']),
  102. totalPrice: function() {
  103. return (parseFloat(this.orderInfo.totalPrice) + parseFloat(this.orderInfo.expressCost)).toFixed(2);
  104. }
  105. },
  106. methods: {
  107. init() {
  108. switch (parseInt(this.orderInfo.orderStatus)) {
  109. case 2:
  110. this.show = true;
  111. break
  112. case 3:
  113. this.show = true;
  114. break
  115. }
  116. this.refundLogs = JSON.parse(this.orderInfo.refundLog);
  117. },
  118. reapply() {
  119. order.reapply(this.webUrl, this.orderInfo, this.user);
  120. this.getData();
  121. },
  122. getRefunds() {
  123. uni.request({
  124. url: this.webUrl + 'OrderRefund',
  125. method: 'POST',
  126. header: {
  127. 'content-type': 'application/x-www-form-urlencoded'
  128. },
  129. success: res => {
  130. this.refunds = res.data.result.uniOrderRefundList;
  131. this.express = res.data.result.uniExpress;
  132. },
  133. fail: () => {},
  134. complete: () => {}
  135. });
  136. },
  137. hidePopup() {
  138. this.hasShowPop = false;
  139. },
  140. showPopup() {
  141. this.hasShowPop = true;
  142. },
  143. getData() {
  144. uni.showLoading({
  145. title: "加载中"
  146. })
  147. uni.request({
  148. url: this.webUrl + 'GetOrderInfo',
  149. method: 'POST',
  150. data: {
  151. orderNo: this.orderNo,
  152. userId: this.user.id
  153. },
  154. header: {
  155. 'content-type': 'application/x-www-form-urlencoded'
  156. },
  157. success: res => {
  158. uni.hideLoading();
  159. if (res.data.result.isSuccess) {
  160. this.orderInfo = res.data.result.uniOrder;
  161. this.init();
  162. }
  163. else{
  164. uni.showToast({
  165. title:res.data.result.resultInfo,
  166. icon:"none"
  167. })
  168. }
  169. },
  170. fail: () => {},
  171. complete: () => {}
  172. });
  173. }
  174. },
  175. onPullDownRefresh() {
  176. this.getData();
  177. setTimeout(function() {
  178. uni.stopPullDownRefresh();
  179. }, 1000);
  180. },
  181. onLoad(e) {
  182. if (!this.hasLogin) {
  183. uni.navigateTo({
  184. url: '../login/login',
  185. });
  186. } else {
  187. this.user = JSON.parse(this.jyyUser);
  188. console.log(e.order)
  189. this.orderNo = e.order.replace(/"/g,"");
  190. this.getRefunds();
  191. this.getData();
  192. }
  193. },
  194. data() {
  195. return {
  196. hasShowPop: false,
  197. orderInfo: {},
  198. user: {},
  199. refunds: [],
  200. refundLogs: [],
  201. express: [],
  202. orderNo: ''
  203. };
  204. }
  205. }
  206. </script>
  207. <style>
  208. .order-address-ico {
  209. margin-top: 35upx;
  210. margin-right: 10upx;
  211. width: 40upx;
  212. height: 40upx;
  213. }
  214. .order-address-ico image {
  215. width: 40upx;
  216. height: 40upx;
  217. }
  218. .orderInfo .order-refundLogs {
  219. padding: 0;
  220. margin: 16upx;
  221. }
  222. </style>