orderAfterSales.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <template>
  2. <view>
  3. <view class="flex-col">
  4. <view class="myclient_list flex-col">
  5. <view class="flex-row justify-between">
  6. <view class="nl ">
  7. {{form.mainTitle}}
  8. </view>
  9. <view class="success_status ">{{form.orderStateDesc}}</view>
  10. </view>
  11. <view class="flex-col">
  12. <view class="phone">
  13. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  14. <text>
  15. 团购日期: {{form.grouponStartTime}} 至 {{form.grouponEndTime}}
  16. </text>
  17. </view>
  18. <view class="time">
  19. <image referrerpolicy="no-referrer"
  20. src="http://www.gzzzyd.com/groupon/home_slices/出厂编号-线@2x.png" />
  21. <text>
  22. 订单编号: {{form.orderNo}}
  23. </text>
  24. </view>
  25. </view>
  26. <view class=" vgoodsNumber flex-row justify-center">
  27. <text>请选择退货的商品和数量</text>
  28. </view>
  29. </view>
  30. <view class="conter " :style="{'height':height}">
  31. <scroll-view :scroll-top="scrollTop" scroll-y="true" :style="{'height':height}">
  32. <view>
  33. <view class="all-products-body flex-row" v-for="(item,i) in form.goodsList" :key="i">
  34. <view class="flex-col justify-center">
  35. <view v-if="item.isVGoods" class="image-view" @click="vGoods(item)">
  36. <image class="image" src="/static/images/v.png"></image>
  37. </view>
  38. <view v-else class="image-view @click=" @click="vGoods(item)">
  39. <image class="image" src="/static/images/o.png"></image>
  40. </view>
  41. </view>
  42. <view class="all-products-item flex-row ">
  43. <image class="goodsImage " :src="item.goodsImage" mode="scaleToFill" />
  44. <view class="all-products-item-content flex-col">
  45. <view class="all-products-item-content-t ">
  46. {{item.goodsName}}
  47. </view>
  48. <view class="all-products-item-content-b flex-row justify-between ">
  49. <view class="flex-row">
  50. <text class="red">{{item.goodsPrice}}</text>
  51. <!-- <text class="line-thr">{{item.goodsName}}</text> -->
  52. </view>
  53. <view class=" number-box">
  54. <u-number-box :min=0 :max="formCopy.goodsList[i].goodsNum"
  55. v-model="item.goodsNum"> </u-number-box>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </scroll-view>
  63. </view>
  64. <view class="bottom">
  65. <view class=" button-view flex-row ">
  66. <text class="reason">退货原因:</text>
  67. <view class="input-view flex-col justify-center" @click="openRefundShow">
  68. <view>
  69. <u-input disabled placeholder="请选择退货原因" v-model="reason"></u-input>
  70. </view>
  71. </view>
  72. </view>
  73. <view class="button-view flex-col justify-center ">
  74. <u-button color="#B42A3E " @click="afterSalesSubmit">提交</u-button>
  75. </view>
  76. </view>
  77. </view>
  78. <u-popup :show="RefundShow" @close="RefundShow = false" @open=" ">
  79. <view class="Refund_view">
  80. <view class="Refund_view_title">请选择退货/退款原因</view>
  81. <view class="">
  82. <scroll-view :scroll-top="scrollTop" scroll-y="true" :style="{'height':'400rpx'}">
  83. <u-radio-group v-model="reason" placement="column">
  84. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in reasonList"
  85. :key="index" :label="item.reason" :name="item.reason">
  86. </u-radio>
  87. </u-radio-group>
  88. </scroll-view>
  89. </view>
  90. <button class="Refund_view_btn" @click="RefundShow = false">
  91. 确定
  92. </button>
  93. </view>
  94. </u-popup>
  95. </view>
  96. </template>
  97. <script>
  98. import {
  99. reasonList,
  100. afterSalesSubmit
  101. } from '@/api/groupon.js';
  102. import UInput from "../../../uni_modules/uview-ui/components/u-input/u-input";
  103. export default {
  104. components: {
  105. UInput
  106. },
  107. data() {
  108. return {
  109. reason: '',
  110. goodsIds: [],
  111. reasonList: [],
  112. form: {},
  113. formCopy: {},
  114. RefundShow: false,
  115. height: '',
  116. }
  117. },
  118. onLoad(e) {
  119. this.form = JSON.parse(decodeURIComponent(e.item));
  120. this.formCopy = JSON.parse(decodeURIComponent(e.item));
  121. console.log(this.form)
  122. },
  123. onShow() {
  124. let sysInfo = uni.getSystemInfoSync();
  125. this.height = sysInfo.windowHeight - (sysInfo.screenWidth / 750) * (500) + 'px';
  126. console.log(this.height)
  127. },
  128. methods: {
  129. afterSalesSubmit() {
  130. if (this.goodsIds.length <= 0) {
  131. uni.$u.toast('请选择商品')
  132. return
  133. }
  134. if (!this.reason) {
  135. uni.$u.toast('请选择原因')
  136. return
  137. }
  138. let flag = false
  139. let afterSalesGoods = []
  140. this.form.goodsList.forEach(item => {
  141. if (this.goodsIds.indexOf(item.id) !== -1) {
  142. if (!item.goodsNum) {
  143. uni.$u.toast('请选择商品数量')
  144. flag = true
  145. }
  146. afterSalesGoods.push(item)
  147. }
  148. })
  149. if (flag) {
  150. return;
  151. }
  152. let params = {
  153. reason: this.reason,
  154. orderId: this.form.orderId,
  155. afterSalesGoodsList: afterSalesGoods
  156. };
  157. afterSalesSubmit(params).then(res => {
  158. // uni.$u.toast(res.msg)
  159. uni.navigateBack();
  160. }).catch(err => {
  161. uni.$u.toast(err.msg)
  162. })
  163. },
  164. vGoods(item, index) {
  165. item.isVGoods = !item.isVGoods;
  166. this.$set(this.form.goodsList, index, item)
  167. if (this.goodsIds.indexOf(item.id) === -1) {
  168. this.goodsIds.push(item.id)
  169. } else {
  170. this.goodsIds = this.goodsIds.filter(iter => iter !== item.id)
  171. }
  172. },
  173. openRefundShow() {
  174. this.RefundShow = true
  175. reasonList().then(res => {
  176. this.reasonList = res.data
  177. console.log(this.reasonList)
  178. })
  179. },
  180. }
  181. }
  182. </script>
  183. <style lang="scss" scoped>
  184. @import "/static/css/common.css";
  185. @import './index.rpx.css';
  186. </style>