refundDetail.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view v-if="pageData.refund_status == 1">
  5. <view class="state">请处理退款申请</view>
  6. <view class="subTitle">如果您同意,请点击“同意退款”</view>
  7. </view>
  8. <view v-if="pageData.refund_status == 3">
  9. <view class="state">您拒绝了退款申请</view>
  10. </view>
  11. <view v-if="pageData.refund_status == 2">
  12. <view class="state">您同意了退款申请</view>
  13. </view>
  14. </view>
  15. <view class="center">
  16. <view class="box" v-if="pageData.user">
  17. <view class="box_title">买家信息</view>
  18. <view class="hflex jbetween cell">
  19. <view class="left">买家昵称</view>
  20. <view class="right text_hide" style="max-width: 500rpx;">{{pageData.user.nickname}}</view>
  21. </view>
  22. <view class="hflex jbetween cell">
  23. <view class="left">联系电话</view>
  24. <view class="right">{{pageData.user.phone}}</view>
  25. </view>
  26. </view>
  27. <view class="box">
  28. <view class="box_title">退款信息</view>
  29. <view >
  30. <block v-for="(item,index) in pageData.goods_item" :key="index">
  31. <view class="items hflex acenter">
  32. <image :src="item.goods_cover" class="item-img"></image>
  33. <view class="item-right">
  34. <view class="hflex acenter jbetween">
  35. <view class="item_name text_hide">{{item.goods_name}}</view>
  36. <view class="item_price">¥<span style="font-size: 30rpx;">{{item.price_selling}}</span></view>
  37. </view>
  38. <view class="hflex jbetween" style="padding: 20rpx 0 0;">
  39. <view class="norm text_hide">{{item.goods_spec}}</view>
  40. <view class="left_text">X{{item.stock_sales}}</view>
  41. </view>
  42. </view>
  43. </view>
  44. </block>
  45. </view>
  46. <view class="hflex acenter jbetween cell">
  47. <view class="left">退款状态</view>
  48. <view class="right text-red" v-if="pageData.refund_status == 1">待商家处理</view>
  49. <view class="right text-red" v-if="pageData.refund_status == 2">同意退款</view>
  50. <view class="right text-red" v-if="pageData.refund_status == 3">拒绝退款</view>
  51. </view>
  52. <view class="hflex acenter jbetween cell">
  53. <view class="left">退款原因</view>
  54. <view class="right">{{pageData.refund_reason}}</view>
  55. </view>
  56. <view class="hflex acenter jbetween cell">
  57. <view class="left">退款金额</view>
  58. <view class="right">¥<span style="font-size: 32rpx;color: #222;">{{pageData.refund_money}}</span></view>
  59. </view>
  60. <view class="hflex acenter jbetween cell">
  61. <view class="left">申请时间</view>
  62. <view class="right">{{pageData.refund_time}}</view>
  63. </view>
  64. <view class="hflex acenter jbetween cell">
  65. <view class="left">订单编号</view>
  66. <view class="hflex acenter">
  67. <view class="right">{{pageData.order_no}} | </view>
  68. <view class="right" @click="copy(pageData.order_no)">复制</view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="box">
  73. <view class="box_title">申请信息</view>
  74. <view class="hflex jbetween cell">
  75. <view class="left">是否收货</view>
  76. <view class="right">未收到货</view>
  77. </view>
  78. <!-- <view class="hflex jbetween cell">
  79. <view class="left">售后类型</view>
  80. <view class="right">{{pageData.refund_type}}</view>
  81. </view> -->
  82. <view class="hflex jbetween cell">
  83. <view class="left">售后说明</view>
  84. <view class="right">{{pageData.refund_desc}}</view>
  85. </view>
  86. <view class="hflex cell">
  87. <view class="left">图片凭证</view>
  88. <view class="hflex acenter fwrap img_list">
  89. <block v-for="(item,index) in pageData.refund_nr" :key="index">
  90. <image :src="item" class="refund_img"></image>
  91. </block>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. <view class="bottom hflex acenter jend" v-if="pageData.refund_status == 1 || pageData.refund_status == 3">
  97. <view class="btn1 hflex acenter jcenter" style="color: #9A9A9A;" v-if="pageData.refund_status == 3">已拒绝申请</view>
  98. <view class="hflex acenter jend" style="height: 100%;" v-if="pageData.refund_status == 1">
  99. <view class="btn1 hflex acenter jcenter" @click="apply1(2)">拒绝申请</view>
  100. <view class="btn1 btn2 hflex acenter jcenter" @click="apply1(1)">同意退款</view>
  101. </view>
  102. </view>
  103. <u-popup :show="show_refuse" round="10" mode="center" @close="close" :safeAreaInsetBottom="false">
  104. <view class="popu">
  105. <view class="popu_title hflex acenter jcenter">拒绝原因</view>
  106. <u-textarea v-model="reason" confirmType="done" placeholder="请填写拒绝原因" border="none" ></u-textarea>
  107. <view class="popu_bottom hflex acenter jcenter">
  108. <view class="btn1 hflex acenter jcenter" @click="close">取消</view>
  109. <view class="btn1 btn2 hflex acenter jcenter" @click="refuse">提交</view>
  110. </view>
  111. </view>
  112. </u-popup>
  113. <u-popup :show="show_agree" round="10" mode="center" @close="close" :safeAreaInsetBottom="false">
  114. <view class="popu">
  115. <view class="popu_title hflex acenter jcenter">确认退款</view>
  116. <view class="popu_bottom hflex acenter jcenter">
  117. <view class="btn1 hflex acenter jcenter" @click="close">取消</view>
  118. <view class="btn1 btn2 hflex acenter jcenter" @click="agree">确认</view>
  119. </view>
  120. </view>
  121. </u-popup>
  122. </view>
  123. </template>
  124. <script>
  125. import $api from '@/static/js/api.js'
  126. var that = ''
  127. export default {
  128. data() {
  129. return {
  130. id: '',
  131. pageData: {},
  132. time: 0,
  133. timeData: {},
  134. show_refuse: false,
  135. reason: '',
  136. show_agree: false,
  137. }
  138. },
  139. onLoad(options) {
  140. that = this
  141. that.id = options.id
  142. that.getData()
  143. },
  144. methods: {
  145. getData() {
  146. $api.req({
  147. url: '/data/api.business.Order/order_info',
  148. method: 'POST',
  149. data: {
  150. order_id: that.id
  151. }
  152. }, function(res) {
  153. if(res.code == 1) {
  154. for(var i=0;i<res.data.goods_item.length;i++) {
  155. var temp = res.data.goods_item[i].goods_cover.split('|')
  156. res.data.goods_item[i].goods_cover = temp[0]
  157. }
  158. that.pageData = res.data
  159. for(var i=0;i<that.pageData.goods_item.length;i++) {
  160. that.pageData.goods_item[i].goods_spec = $api.resetspec(that.pageData.goods_item[i].goods_spec)
  161. }
  162. // console.log(that.pageData);
  163. that.pageData.refund_nr = that.pageData.refund_nr.split('|')
  164. }
  165. })
  166. },
  167. copy(value) {
  168. uni.setClipboardData({
  169. data: value,
  170. success: function () {
  171. $api.info('复制成功')
  172. }
  173. });
  174. },
  175. apply1(type) {
  176. if(type == 1) {
  177. that.show_agree = true
  178. } else {
  179. that.show_refuse = true
  180. }
  181. },
  182. close() {
  183. that.show_refuse = false
  184. that.show_agree = false
  185. },
  186. refuse() {
  187. $api.req({
  188. url: '/data/api.business.Order/examine_refund',
  189. method: 'POST',
  190. data: {
  191. order_id: that.id,
  192. type: 2
  193. }
  194. }, function(res) {
  195. if(res.code == 1) {
  196. that.getData()
  197. that.close()
  198. }
  199. })
  200. },
  201. agree() {
  202. $api.req({
  203. url: '/data/api.business.Order/examine_refund',
  204. method: 'POST',
  205. data: {
  206. order_id: that.id,
  207. type: 1,
  208. reason: that.reason
  209. }
  210. }, function(res) {
  211. if(res.code == 1) {
  212. that.getData()
  213. that.close()
  214. }
  215. })
  216. }
  217. },
  218. }
  219. </script>
  220. <style lang="scss" scoped>
  221. .content::v-deep {
  222. background: #F4F4F4;
  223. .top {
  224. width: 690rpx;
  225. margin: 20rpx auto 0;
  226. padding: 20rpx 30rpx 24rpx;
  227. background: #FFFFFF;
  228. border-radius: 20rpx;
  229. .state {
  230. font-size: 36rpx;
  231. font-weight: bold;
  232. color: #222222;
  233. line-height: 50rpx;
  234. padding-right: 24rpx;
  235. }
  236. .blue_bg {
  237. // width: 124rpx;
  238. padding: 0 14rpx;
  239. height: 32rpx;
  240. background: #506DFF;
  241. border-radius: 18rpx 0px 18rpx 18rpx;
  242. font-size: 16rpx;
  243. text-align: center;
  244. font-weight: 400;
  245. color: #FFFFFF;
  246. line-height: 32rpx;
  247. }
  248. .blue_bg2 {
  249. // width: 256rpx;
  250. padding: 0 14rpx;
  251. height: 32rpx;
  252. background: #E7EBFF;
  253. border-radius: 18rpx;
  254. font-size: 16rpx;
  255. font-weight: bold;
  256. color: #222222;
  257. line-height: 32rpx;
  258. }
  259. .time {
  260. padding-left: 16rpx;
  261. }
  262. .subTitle {
  263. font-size: 24rpx;
  264. font-weight: 400;
  265. color: #888888;
  266. line-height: 34rpx;
  267. }
  268. .top_bg {
  269. width: 100%;
  270. box-sizing: border-box;
  271. padding: 0 20rpx;
  272. background: #F4F4F4;
  273. border-radius: 20rpx;
  274. .top_cell {
  275. padding: 24rpx 0;
  276. .left {
  277. font-size: 28rpx;
  278. font-weight: 400;
  279. color: #333333;
  280. line-height: 40rpx;
  281. }
  282. }
  283. }
  284. }
  285. .center {
  286. width: 100%;
  287. box-sizing: border-box;
  288. padding: 0 30rpx;
  289. .box {
  290. width: 100%;
  291. background: #FFFFFF;
  292. border-radius: 20rpx;
  293. box-sizing: border-box;
  294. padding: 0 20rpx;
  295. margin-top: 20rpx;
  296. .box_title {
  297. font-size: 32rpx;
  298. font-weight: 600;
  299. color: #222222;
  300. line-height: 44rpx;
  301. padding: 28rpx 0 24rpx;
  302. }
  303. .cell {
  304. padding-bottom: 24rpx;
  305. .left {
  306. width: 140rpx;
  307. font-size: 26rpx;
  308. font-weight: 400;
  309. color: #222222;
  310. line-height: 36rpx;
  311. }
  312. .right {
  313. font-size: 26rpx;
  314. font-weight: 400;
  315. color: #555555;
  316. line-height: 36rpx;
  317. }
  318. .text-red {
  319. color: #FF2020;
  320. }
  321. .right1 {
  322. font-size: 26rpx;
  323. font-weight: 400;
  324. color: #333333;
  325. line-height: 36rpx;
  326. }
  327. .img_list {
  328. // max-width: 280rpx;
  329. .refund_img {
  330. width: 146rpx;
  331. height: 146rpx;
  332. border-radius: 16rpx;
  333. margin: 0 18rpx 20rpx 0;
  334. }
  335. .refund_img:nth-child(3n+3) {
  336. margin: 0 0 20rpx;
  337. }
  338. }
  339. }
  340. .items {
  341. padding: 20rpx 0 32rpx;
  342. border-bottom: 1rpx solid #F4F4F4;
  343. .item-img {
  344. width: 160rpx;
  345. height: 160rpx;
  346. border-radius: 24rpx;
  347. }
  348. .item-right {
  349. width:calc(100% - 160rpx);
  350. padding-left: 20rpx;
  351. .item_name {
  352. font-size: 30rpx;
  353. font-weight: 400;
  354. color: #222222;
  355. line-height: 42rpx;
  356. }
  357. .item_price {
  358. font-size: 20rpx;
  359. font-weight: 600;
  360. color: #222222;
  361. line-height: 24rpx;
  362. }
  363. .norm {
  364. width: max-content;
  365. max-width: 300rpx;
  366. // height: 42px;
  367. background: #F5F5F5;
  368. border-radius: 12rpx;
  369. box-sizing: border-box;
  370. padding: 12rpx;
  371. font-size: 20rpx;
  372. font-weight: 400;
  373. color: #888888;
  374. line-height: 28rpx;
  375. }
  376. .left_text {
  377. font-size: 24rpx;
  378. font-weight: 500;
  379. color: #888888;
  380. line-height: 28rpx;
  381. }
  382. }
  383. }
  384. .items:nth-last-child(1) {
  385. border: none;
  386. }
  387. }
  388. .box:nth-last-child(1) {
  389. margin-bottom: 186rpx;
  390. }
  391. }
  392. .bottom {
  393. width: 100%;
  394. height: 166rpx;
  395. background: #FFFFFF;
  396. box-sizing: border-box;
  397. padding: 0 30rpx;
  398. position: fixed;
  399. z-index: 99;
  400. bottom: 0;
  401. .btn1 {
  402. width: 208rpx;
  403. height: 86rpx;
  404. border-radius: 38rpx;
  405. // border: 1rpx solid #787878;
  406. font-size: 30rpx;
  407. font-weight: 400;
  408. color: #506DFF;
  409. line-height: 76rpx;
  410. margin-left: 20rpx;
  411. border: 1rpx solid #506DFF;
  412. }
  413. .btn2 {
  414. background: #506DFF;
  415. border: none;
  416. color: #FFFFFF;
  417. }
  418. }
  419. .popu {
  420. width: 570rpx;
  421. margin: 0 auto;
  422. background: #FFFFFF;
  423. border-radius: 20rpx;
  424. box-sizing: border-box;
  425. padding: 0 30rpx;
  426. .popu_title {
  427. font-size: 36rpx;
  428. font-weight: 500;
  429. color: #222222;
  430. line-height: 50rpx;
  431. padding: 44rpx 0 36rpx;
  432. }
  433. .u-textarea {
  434. background: #F2F2F2 !important;
  435. border-radius: 20rpx !important;
  436. margin-bottom: 54rpx;
  437. }
  438. .popu_bottom {
  439. padding-bottom: 52rpx;
  440. .btn1 {
  441. width: 220rpx;
  442. height: 76rpx;
  443. border-radius: 38rpx;
  444. border: 2rpx solid #506DFF;
  445. font-size: 32rpx;
  446. font-weight: 400;
  447. color: #506DFF;
  448. line-height: 44rpx;
  449. }
  450. .btn2 {
  451. background: #506DFF;
  452. color: #FFFFFF;
  453. margin-left: 50rpx;
  454. }
  455. }
  456. }
  457. }
  458. </style>