refund.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. <template>
  2. <view class="content">
  3. <view class="center">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="box" @click="toDetail(item.id)">
  6. <view class="top hflex acenter jbetween">
  7. <view class="order-no">订单号<span style="color: #333">{{item.order_no}}</span></view>
  8. <view class="text_red" v-if="item.refund_status == 1">等待审核</view>
  9. <view class="text_blue" v-if="item.refund_status == 2">同意退款</view>
  10. <view class="text_blue" v-if="item.refund_status == 3">拒绝退款</view>
  11. </view>
  12. <view class="time">下单时间:{{item.create_at}}</view>
  13. <view class="good">
  14. <block v-for="(item2,index2) in item.goods_item" :key="index2">
  15. <view class="hflex acenter good_item">
  16. <image :src="item2.goods_cover" class="img"></image>
  17. <view class="good_center">
  18. <view class="name text_hide">{{item2.goods_name}}</view>
  19. <view class="spec text_hide">{{item2.goods_spec}}</view>
  20. </view>
  21. <view class="vflex jend">
  22. <view class="price">¥<span style="font-size: 30rpx;">{{item2.price_selling}}</span></view>
  23. <view class="num">X{{item2.stock_sales}}</view>
  24. </view>
  25. </view>
  26. </block>
  27. <view class="hflex jend">
  28. <view class="good_bottom">共{{item.goods_item.length}}件商品 实付款¥<span class="bottom_price">{{item.payment_amount}}</span></view>
  29. </view>
  30. </view>
  31. <view class="box_bottom hflex jend" v-if="item.refund_status == 1">
  32. <view class="btn1 hflex acenter jcenter" @click.stop="apply1(item.id,2)">拒绝申请</view>
  33. <view class="btn1 btn2 hflex acenter jcenter" @click.stop="apply1(item.id,1)">同意退款</view>
  34. </view>
  35. <view class="box_bottom hflex jend" v-if="item.refund_status == 2">
  36. <view class="btn1 hflex acenter jcenter" @click.stop="dele(item.id)">删除记录</view>
  37. <view class="btn1 btn2 hflex acenter jcenter" @click.stop="toDetail(item.id)">查看详情</view>
  38. </view>
  39. <view class="box_bottom hflex jend" v-if="item.refund_status == 3">
  40. <view class="btn1 hflex acenter jcenter" style="color: #9A9A9A;">已拒绝申请</view>
  41. </view>
  42. </view>
  43. </block>
  44. </view>
  45. <u-popup :show="show_refuse" mode="center" round="10" @close="close" :safeAreaInsetBottom="false">
  46. <view class="popu">
  47. <view class="popu_title hflex acenter jcenter">拒绝原因</view>
  48. <u-textarea v-model="reason" confirmType="done" placeholder="请填写拒绝原因" border="none" ></u-textarea>
  49. <view class="popu_bottom hflex acenter jcenter">
  50. <view class="btn1 hflex acenter jcenter" @click="close">取消</view>
  51. <view class="btn1 btn2 hflex acenter jcenter" @click="refuse">提交</view>
  52. </view>
  53. </view>
  54. </u-popup>
  55. <u-popup :show="show_agree" mode="center" round="10" @close="close" :safeAreaInsetBottom="false">
  56. <view class="popu">
  57. <view class="popu_title hflex acenter jcenter">确认退款</view>
  58. <view class="popu_bottom hflex acenter jcenter">
  59. <view class="btn1 hflex acenter jcenter" @click="close">取消</view>
  60. <view class="btn1 btn2 hflex acenter jcenter" @click="agree">确认</view>
  61. </view>
  62. </view>
  63. </u-popup>
  64. </view>
  65. </template>
  66. <script>
  67. import $api from '@/static/js/api.js'
  68. var that = ''
  69. export default {
  70. data() {
  71. return {
  72. pageList: [],
  73. page: 1,
  74. limit: 10,
  75. total: 1,
  76. show_refuse: false,
  77. reason: '',
  78. show_agree: false,
  79. id: '',
  80. }
  81. },
  82. onLoad() {
  83. that = this
  84. uni.startPullDownRefresh();
  85. },
  86. onShow() {
  87. that.getList()
  88. },
  89. onPullDownRefresh() {
  90. that.page = 1
  91. that.pageList = []
  92. that.getList()
  93. },
  94. methods: {
  95. getList() {
  96. $api.req({
  97. url: '/data/api.business.Order/refund_list',
  98. data: {
  99. page: that.page
  100. }
  101. }, function(res) {
  102. if(res.code == 1) {
  103. for(var i=0;i<res.data.list.length;i++) {
  104. for(var j=0;j<res.data.list[i].goods_item.length;j++) {
  105. var temp = res.data.list[i].goods_item[j].goods_cover.split('|')
  106. res.data.list[i].goods_item[j].goods_cover = temp[0]
  107. }
  108. }
  109. for(var i=0;i<res.data.list.length;i++) {
  110. for(var j=0;j<res.data.list[i].goods_item.length;j++) {
  111. res.data.list[i].goods_item[j].goods_spec = $api.resetspec(res.data.list[i].goods_item[j].goods_spec)
  112. }
  113. }
  114. if(that.page == 1) {
  115. that.pageList = res.data.list
  116. } else {
  117. that.pageList = that.pageList.concat(res.data.list)
  118. }
  119. // console.log(that.pageList);
  120. that.total = res.data.page.total
  121. that.limit = res.data.page.limit
  122. uni.stopPullDownRefresh();
  123. }
  124. })
  125. },
  126. apply1(id,type) {
  127. that.id = id
  128. // console.log(type);
  129. if(type == 1) {
  130. that.show_agree = true
  131. } else {
  132. that.show_refuse = true
  133. }
  134. },
  135. close() {
  136. that.show_refuse = false
  137. that.show_agree = false
  138. },
  139. refuse() {
  140. $api.req({
  141. url: '/data/api.business.Order/examine_refund',
  142. method: 'POST',
  143. data: {
  144. order_id: that.id,
  145. type: 2,
  146. reason: that.reason
  147. }
  148. }, function(res) {
  149. if(res.code == 1) {
  150. that.page = 1
  151. that.getList()
  152. that.close()
  153. }
  154. })
  155. },
  156. agree() {
  157. $api.req({
  158. url: '/data/api.business.Order/examine_refund',
  159. method: 'POST',
  160. data: {
  161. order_id: that.id,
  162. type: 1
  163. }
  164. }, function(res) {
  165. if(res.code == 1) {
  166. that.page = 1
  167. $api.info('已同意退款,支付金额原路返回。')
  168. setTimeout(() => {
  169. that.getList()
  170. }, 1000)
  171. that.close()
  172. }
  173. })
  174. },
  175. dele(id) {
  176. $api.req({
  177. url: '/data/api.business.Order/del_refund',
  178. method: 'POST',
  179. data: {
  180. order_id: id
  181. }
  182. }, function(res) {
  183. if(res.code == 1) {
  184. $api.info(res.info)
  185. that.page = 1
  186. that.getList()
  187. }
  188. })
  189. },
  190. toDetail(id) {
  191. $api.jump('/pages/order/refundDetail?id=' + id)
  192. },
  193. onReachBottom() {
  194. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  195. $api.info("没有更多了")
  196. } else {
  197. that.page++
  198. that.getList(that.cid)
  199. }
  200. }
  201. },
  202. }
  203. </script>
  204. <style lang="scss" scoped>
  205. .content {
  206. .center {
  207. width: 100%;
  208. box-sizing: border-box;
  209. padding: 0 30rpx;
  210. min-height:100vh;
  211. background: #F4F4F4;
  212. .box {
  213. background: #FFFFFF;
  214. border-radius: 20px;
  215. width: 100%;
  216. margin: 20rpx 0 0;
  217. box-sizing: border-box;
  218. padding: 0 20rpx;
  219. .top {
  220. padding: 24rpx 0 14rpx;
  221. .order-no {
  222. font-size: 24rpx;
  223. font-weight: 400;
  224. color: #333333;
  225. line-height: 30rpx;
  226. }
  227. .text_red {
  228. font-size: 24rpx;
  229. font-weight: 400;
  230. color: #FF2020;
  231. line-height: 34rpx;
  232. }
  233. .text_blue {
  234. font-size: 24rpx;
  235. font-weight: 500;
  236. color: #506DFF;
  237. line-height: 34rpx;
  238. }
  239. }
  240. .time {
  241. font-size: 24rpx;
  242. font-weight: 400;
  243. color: #555555;
  244. line-height: 34rpx;
  245. padding: 0 0 24rpx;
  246. }
  247. .good {
  248. width: 100%;
  249. padding: 24rpx 0 20rpx;
  250. border-top: 1rpx solid #F4F4F4;
  251. border-bottom: 1rpx solid #F4F4F4;
  252. .good_item {
  253. padding-bottom: 32rpx;
  254. }
  255. .good_item:nth-last-child(1) {
  256. padding-bottom: 0;
  257. }
  258. .img {
  259. width: 180rpx;
  260. height: 180rpx;
  261. }
  262. .good_center {
  263. margin: 0 20rpx;
  264. width: 338rpx;
  265. .name {
  266. font-size: 30rpx;
  267. font-weight: 400;
  268. color: #222222;
  269. line-height: 42rpx;
  270. padding-bottom: 20rpx;
  271. }
  272. .spec {
  273. width: max-content;
  274. max-width: 300rpx;
  275. background: #F5F5F5;
  276. border-radius: 12rpx;
  277. font-size: 20rpx;
  278. font-weight: 400;
  279. color: #888888;
  280. line-height: 28rpx;
  281. box-sizing: border-box;
  282. padding: 12rpx;
  283. }
  284. }
  285. .price {
  286. font-size: 20rpx;
  287. font-weight: 400;
  288. color: #222222;
  289. line-height: 24rpx;
  290. padding: 0 0 16rpx;
  291. }
  292. .num {
  293. font-size: 24rpx;
  294. font-weight: 500;
  295. color: #888888;
  296. line-height: 28rpx;
  297. }
  298. .good_bottom {
  299. font-size: 22rpx;
  300. font-weight: 400;
  301. color: #272727;
  302. line-height: 32rpx;
  303. padding: 26rpx 0 0;
  304. }
  305. .bottom_price {
  306. font-size: 32rpx;
  307. color: #222222;
  308. font-weight: bold;
  309. line-height: 24px;
  310. line-height: 24px;
  311. }
  312. }
  313. .box_bottom {
  314. padding: 24rpx 0;
  315. .btn1 {
  316. width: 180rpx;
  317. height: 60rpx;
  318. border-radius: 36rpx;
  319. border: 1rpx solid #787878;
  320. font-size: 28rpx;
  321. font-weight: 400;
  322. color: #5D5D5D;
  323. line-height: 40rpx;
  324. margin-left: 24rpx;
  325. }
  326. .btn2 {
  327. background: #506DFF;
  328. border: none;
  329. color: #FFFFFF;
  330. }
  331. }
  332. }
  333. }
  334. .popu {
  335. width: 570rpx;
  336. margin: 0 auto;
  337. background: #FFFFFF;
  338. border-radius: 20rpx;
  339. box-sizing: border-box;
  340. padding: 0 30rpx;
  341. .popu_title {
  342. font-size: 36rpx;
  343. font-weight: 500;
  344. color: #222222;
  345. line-height: 50rpx;
  346. padding: 44rpx 0 36rpx;
  347. }
  348. .u-textarea {
  349. background: #F2F2F2 !important;
  350. border-radius: 20rpx !important;
  351. margin-bottom: 54rpx;
  352. }
  353. .popu_bottom {
  354. padding-bottom: 52rpx;
  355. .btn1 {
  356. width: 220rpx;
  357. height: 76rpx;
  358. border-radius: 38rpx;
  359. border: 2rpx solid #506DFF;
  360. font-size: 32rpx;
  361. font-weight: 400;
  362. color: #506DFF;
  363. line-height: 44rpx;
  364. }
  365. .btn2 {
  366. background: #506DFF;
  367. color: #FFFFFF;
  368. margin-left: 50rpx;
  369. }
  370. }
  371. }
  372. }
  373. </style>