refundDetail.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  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. console.log('jujueyuany ',that.pageData);
  160. for(var i=0;i<that.pageData.goods_item.length;i++) {
  161. that.pageData.goods_item[i].goods_spec = $api.resetspec(that.pageData.goods_item[i].goods_spec)
  162. }
  163. // console.log(that.pageData);
  164. that.pageData.refund_nr = that.pageData.refund_nr.split('|')
  165. }
  166. })
  167. },
  168. copy(value) {
  169. uni.setClipboardData({
  170. data: value,
  171. success: function () {
  172. $api.info('复制成功')
  173. }
  174. });
  175. },
  176. apply1(type) {
  177. if(type == 1) {
  178. that.show_agree = true
  179. } else {
  180. that.show_refuse = true
  181. }
  182. },
  183. close() {
  184. that.show_refuse = false
  185. that.show_agree = false
  186. },
  187. refuse() {
  188. $api.req({
  189. url: '/data/api.business.Order/examine_refund',
  190. method: 'POST',
  191. data: {
  192. order_id: that.id,
  193. type: 2,
  194. reason: that.reason
  195. }
  196. }, function(res) {
  197. if(res.code == 1) {
  198. that.getData()
  199. that.close()
  200. }
  201. })
  202. },
  203. agree() {
  204. $api.req({
  205. url: '/data/api.business.Order/examine_refund',
  206. method: 'POST',
  207. data: {
  208. order_id: that.id,
  209. type: 1,
  210. }
  211. }, function(res) {
  212. if(res.code == 1) {
  213. $api.info('已同意退款,支付金额原路返回。')
  214. setTimeout(() => {
  215. that.getData()
  216. }, 1000)
  217. that.close()
  218. }
  219. })
  220. }
  221. },
  222. }
  223. </script>
  224. <style lang="scss" scoped>
  225. .content::v-deep {
  226. background: #F4F4F4;
  227. .top {
  228. width: 690rpx;
  229. margin: 20rpx auto 0;
  230. padding: 20rpx 30rpx 24rpx;
  231. background: #FFFFFF;
  232. border-radius: 20rpx;
  233. .state {
  234. font-size: 36rpx;
  235. font-weight: bold;
  236. color: #222222;
  237. line-height: 50rpx;
  238. padding-right: 24rpx;
  239. }
  240. .blue_bg {
  241. // width: 124rpx;
  242. padding: 0 14rpx;
  243. height: 32rpx;
  244. background: #506DFF;
  245. border-radius: 18rpx 0px 18rpx 18rpx;
  246. font-size: 16rpx;
  247. text-align: center;
  248. font-weight: 400;
  249. color: #FFFFFF;
  250. line-height: 32rpx;
  251. }
  252. .blue_bg2 {
  253. // width: 256rpx;
  254. padding: 0 14rpx;
  255. height: 32rpx;
  256. background: #E7EBFF;
  257. border-radius: 18rpx;
  258. font-size: 16rpx;
  259. font-weight: bold;
  260. color: #222222;
  261. line-height: 32rpx;
  262. }
  263. .time {
  264. padding-left: 16rpx;
  265. }
  266. .subTitle {
  267. font-size: 24rpx;
  268. font-weight: 400;
  269. color: #888888;
  270. line-height: 34rpx;
  271. }
  272. .top_bg {
  273. width: 100%;
  274. box-sizing: border-box;
  275. padding: 0 20rpx;
  276. background: #F4F4F4;
  277. border-radius: 20rpx;
  278. .top_cell {
  279. padding: 24rpx 0;
  280. .left {
  281. font-size: 28rpx;
  282. font-weight: 400;
  283. color: #333333;
  284. line-height: 40rpx;
  285. }
  286. }
  287. }
  288. }
  289. .center {
  290. width: 100%;
  291. box-sizing: border-box;
  292. padding: 0 30rpx;
  293. .box {
  294. width: 100%;
  295. background: #FFFFFF;
  296. border-radius: 20rpx;
  297. box-sizing: border-box;
  298. padding: 0 20rpx;
  299. margin-top: 20rpx;
  300. .box_title {
  301. font-size: 32rpx;
  302. font-weight: 600;
  303. color: #222222;
  304. line-height: 44rpx;
  305. padding: 28rpx 0 24rpx;
  306. }
  307. .cell {
  308. padding-bottom: 24rpx;
  309. .left {
  310. width: 140rpx;
  311. font-size: 26rpx;
  312. font-weight: 400;
  313. color: #222222;
  314. line-height: 36rpx;
  315. }
  316. .right {
  317. font-size: 26rpx;
  318. font-weight: 400;
  319. color: #555555;
  320. line-height: 36rpx;
  321. }
  322. .text-red {
  323. color: #FF2020;
  324. }
  325. .right1 {
  326. font-size: 26rpx;
  327. font-weight: 400;
  328. color: #333333;
  329. line-height: 36rpx;
  330. }
  331. .img_list {
  332. // max-width: 280rpx;
  333. .refund_img {
  334. width: 146rpx;
  335. height: 146rpx;
  336. border-radius: 16rpx;
  337. margin: 0 18rpx 20rpx 0;
  338. }
  339. .refund_img:nth-child(3n+3) {
  340. margin: 0 0 20rpx;
  341. }
  342. }
  343. }
  344. .items {
  345. padding: 20rpx 0 32rpx;
  346. border-bottom: 1rpx solid #F4F4F4;
  347. .item-img {
  348. width: 160rpx;
  349. height: 160rpx;
  350. border-radius: 24rpx;
  351. }
  352. .item-right {
  353. width:calc(100% - 160rpx);
  354. padding-left: 20rpx;
  355. .item_name {
  356. font-size: 30rpx;
  357. font-weight: 400;
  358. color: #222222;
  359. line-height: 42rpx;
  360. }
  361. .item_price {
  362. font-size: 20rpx;
  363. font-weight: 600;
  364. color: #222222;
  365. line-height: 24rpx;
  366. }
  367. .norm {
  368. width: max-content;
  369. max-width: 300rpx;
  370. // height: 42px;
  371. background: #F5F5F5;
  372. border-radius: 12rpx;
  373. box-sizing: border-box;
  374. padding: 12rpx;
  375. font-size: 20rpx;
  376. font-weight: 400;
  377. color: #888888;
  378. line-height: 28rpx;
  379. }
  380. .left_text {
  381. font-size: 24rpx;
  382. font-weight: 500;
  383. color: #888888;
  384. line-height: 28rpx;
  385. }
  386. }
  387. }
  388. .items:nth-last-child(1) {
  389. border: none;
  390. }
  391. }
  392. .box:nth-last-child(1) {
  393. margin-bottom: 186rpx;
  394. }
  395. }
  396. .bottom {
  397. width: 100%;
  398. height: 166rpx;
  399. background: #FFFFFF;
  400. box-sizing: border-box;
  401. padding: 0 30rpx;
  402. position: fixed;
  403. z-index: 99;
  404. bottom: 0;
  405. .btn1 {
  406. width: 208rpx;
  407. height: 86rpx;
  408. border-radius: 38rpx;
  409. // border: 1rpx solid #787878;
  410. font-size: 30rpx;
  411. font-weight: 400;
  412. color: #506DFF;
  413. line-height: 76rpx;
  414. margin-left: 20rpx;
  415. border: 1rpx solid #506DFF;
  416. }
  417. .btn2 {
  418. background: #506DFF;
  419. border: none;
  420. color: #FFFFFF;
  421. }
  422. }
  423. .popu {
  424. width: 570rpx;
  425. margin: 0 auto;
  426. background: #FFFFFF;
  427. border-radius: 20rpx;
  428. box-sizing: border-box;
  429. padding: 0 30rpx;
  430. .popu_title {
  431. font-size: 36rpx;
  432. font-weight: 500;
  433. color: #222222;
  434. line-height: 50rpx;
  435. padding: 44rpx 0 36rpx;
  436. }
  437. .u-textarea {
  438. background: #F2F2F2 !important;
  439. border-radius: 20rpx !important;
  440. margin-bottom: 54rpx;
  441. }
  442. .popu_bottom {
  443. padding-bottom: 52rpx;
  444. .btn1 {
  445. width: 220rpx;
  446. height: 76rpx;
  447. border-radius: 38rpx;
  448. border: 2rpx solid #506DFF;
  449. font-size: 32rpx;
  450. font-weight: 400;
  451. color: #506DFF;
  452. line-height: 44rpx;
  453. }
  454. .btn2 {
  455. background: #506DFF;
  456. color: #FFFFFF;
  457. margin-left: 50rpx;
  458. }
  459. }
  460. }
  461. }
  462. </style>