orderAfterSales.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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" v-if="item.isAfterSales == 0">
  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 " v-if="item.isAfterSales == 0">
  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 " v-if="type == 2">
  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 :style="{'height':'100rpx'}" v-if="type !== 2"></view>
  74. <view class="button-view flex-col justify-center ">
  75. <u-button color="#B42A3E " @click="refundSubmit" v-if="type == 1">提交</u-button>
  76. <u-button color="#B42A3E " @click="afterSalesSubmit" v-if="type == 2">提交</u-button>
  77. </view>
  78. </view>
  79. </view>
  80. <u-popup :show="RefundShow" @close="RefundShow = false" @open=" ">
  81. <view class="Refund_view">
  82. <view class="Refund_view_title">请选择退货/退款原因</view>
  83. <view class="">
  84. <scroll-view :scroll-top="scrollTop" scroll-y="true" :style="{'height':'400rpx'}">
  85. <u-radio-group v-model="reason" placement="column">
  86. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in reasonList"
  87. :key="index" :label="item.reason" :name="item.reason">
  88. </u-radio>
  89. </u-radio-group>
  90. </scroll-view>
  91. </view>
  92. <button class="Refund_view_btn" @click="RefundShow = false">
  93. 确定
  94. </button>
  95. </view>
  96. </u-popup>
  97. </view>
  98. </template>
  99. <script>
  100. import {
  101. reasonList,
  102. afterSalesSubmit,
  103. refundSubmit
  104. } from '@/api/groupon.js';
  105. import UInput from "../../../uni_modules/uview-ui/components/u-input/u-input";
  106. export default {
  107. components: {
  108. UInput
  109. },
  110. data() {
  111. return {
  112. reason: '',
  113. goodsIds: [],
  114. reasonList: [],
  115. form: {},
  116. formCopy: {},
  117. RefundShow: false,
  118. height: '',
  119. type: 0,
  120. }
  121. },
  122. onLoad(e) {
  123. this.form = JSON.parse(decodeURIComponent(e.item));
  124. this.type = e.type;
  125. this.formCopy = JSON.parse(decodeURIComponent(e.item));
  126. console.log(this.form)
  127. },
  128. onShow() {
  129. let sysInfo = uni.getSystemInfoSync();
  130. this.height = sysInfo.windowHeight - (sysInfo.screenWidth / 750) * (500) + 'px';
  131. console.log(this.height)
  132. },
  133. methods: {
  134. refundSubmit() {
  135. if (this.goodsIds.length <= 0) {
  136. uni.$u.toast('请选择商品')
  137. return
  138. }
  139. let flag = false
  140. let afterSalesGoods = []
  141. this.form.goodsList.forEach(item => {
  142. if (this.goodsIds.indexOf(item.id) !== -1) {
  143. if (!item.goodsNum) {
  144. uni.$u.toast('请选择商品数量')
  145. flag = true
  146. }
  147. afterSalesGoods.push(item)
  148. }
  149. })
  150. if (flag) {
  151. return;
  152. }
  153. let params = {
  154. orderId: this.form.orderId,
  155. afterSalesGoodsList: afterSalesGoods
  156. };
  157. refundSubmit(params).then(res => {
  158. console.log("refundSubmit...")
  159. // uni.$u.toast(res.msg)
  160. uni.navigateBack();
  161. }).catch(err => {
  162. uni.$u.toast(err.msg)
  163. })
  164. },
  165. afterSalesSubmit() {
  166. if (this.goodsIds.length <= 0) {
  167. uni.$u.toast('请选择商品')
  168. return
  169. }
  170. if (!this.reason) {
  171. uni.$u.toast('请选择原因')
  172. return
  173. }
  174. let flag = false
  175. let afterSalesGoods = []
  176. this.form.goodsList.forEach(item => {
  177. if (this.goodsIds.indexOf(item.id) !== -1) {
  178. if (!item.goodsNum) {
  179. uni.$u.toast('请选择商品数量')
  180. flag = true
  181. }
  182. afterSalesGoods.push(item)
  183. }
  184. })
  185. if (flag) {
  186. return;
  187. }
  188. let params = {
  189. reason: this.reason,
  190. orderId: this.form.orderId,
  191. afterSalesGoodsList: afterSalesGoods
  192. };
  193. afterSalesSubmit(params).then(res => {
  194. // uni.$u.toast(res.msg)
  195. uni.navigateBack();
  196. }).catch(err => {
  197. uni.$u.toast(err.msg)
  198. })
  199. },
  200. vGoods(item, index) {
  201. item.isVGoods = !item.isVGoods;
  202. this.$set(this.form.goodsList, index, item)
  203. if (this.goodsIds.indexOf(item.id) === -1) {
  204. this.goodsIds.push(item.id)
  205. } else {
  206. this.goodsIds = this.goodsIds.filter(iter => iter !== item.id)
  207. }
  208. },
  209. openRefundShow() {
  210. this.RefundShow = true
  211. reasonList().then(res => {
  212. this.reasonList = res.data
  213. console.log(this.reasonList)
  214. })
  215. },
  216. }
  217. }
  218. </script>
  219. <style lang="scss" scoped>
  220. @import "/static/css/common.css";
  221. @import './index.rpx.css';
  222. </style>