applicationRefund.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <view class="page">
  3. <view class="commodity-information">
  4. <view class="commodity-1">
  5. <image
  6. class="commodity-img"
  7. :src="goodsDetail.goods.sku_item.image"
  8. mode=""
  9. ></image>
  10. <view class="commodity-right">
  11. <view class="commodity-2">
  12. <view class="commodity-title"
  13. >{{ goodsDetail.goods.goods_name }}
  14. </view>
  15. </view>
  16. <view class="commodity-3">
  17. <view class="specifications">
  18. {{ goodsDetail.goods.sku_item.item }}
  19. </view>
  20. <view style="font-size: 24rpx">
  21. x{{ goodsDetail.goods.goods_num }}
  22. </view>
  23. </view>
  24. <view class="commodity-price" v-if="goodsDetail.goods">
  25. <text style="font-size: 20rpx">¥</text>
  26. <text>{{ refund_price.split(".")[0] }}</text
  27. >.
  28. <text style="font-size: 20rpx">{{
  29. refund_price.split(".")[1]
  30. }}</text>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="reason">
  36. <view class="application-reason">
  37. <view class=""> 申请原因 </view>
  38. <view class="right" @click="openReason">
  39. <text>{{ refundText }}</text>
  40. <image
  41. class="right-icon"
  42. src="../../static/mine/325.png"
  43. mode=""
  44. ></image>
  45. </view>
  46. </view>
  47. <view class="application-reason">
  48. <view class=""> 退款金额 </view>
  49. <view
  50. class="commodity-price"
  51. style="font-weight: 600"
  52. v-if="goodsDetail.goods"
  53. >
  54. <text style="font-size: 20rpx">¥</text>
  55. <text>{{ refund_price.split(".")[0] }}</text
  56. >.
  57. <text style="font-size: 20rpx">{{ refund_price.split(".")[1] }}</text>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="application-explain">
  62. <view class="application-title"> 申请说明 </view>
  63. <view class="textarea">
  64. <u--textarea
  65. v-model="value1"
  66. border="none"
  67. placeholder="请您详细填写申请说明"
  68. ></u--textarea>
  69. <u-upload
  70. :fileList="fileList6"
  71. @afterRead="afterRead"
  72. @delete="deletePic"
  73. name="6"
  74. multiple
  75. :maxCount="10"
  76. >
  77. <view class="unload">
  78. <view class="text-content"> 上传凭证<br />(最多9张) </view>
  79. </view>
  80. </u-upload>
  81. </view>
  82. <!-- <view class="img-list">
  83. <image
  84. v-for="(item, index) in imgList"
  85. :src="item"
  86. :key="index"
  87. mode="scaleToFill"
  88. class="upload-img"
  89. />
  90. </view> -->
  91. </view>
  92. <reasonPopupVue :show="show" @close="close"></reasonPopupVue>
  93. <view class="footer">
  94. <button class="btn" @click="submitApplication">提交申请</button>
  95. </view>
  96. </view>
  97. </template>
  98. <script>
  99. import reasonPopupVue from "./component/reasonPopup.vue";
  100. export default {
  101. components: {
  102. reasonPopupVue,
  103. },
  104. data() {
  105. return {
  106. show: false,
  107. value1: "",
  108. refundText: "请选择退款原因",
  109. orderId: "",
  110. goodsDetail: {},
  111. imgList: [],
  112. fileList6: [],
  113. btnShow: true, //上传图片时,该字段改为false,用来判断图片是否上传完毕
  114. refund_price: "", //计算后的退款金额
  115. };
  116. },
  117. onLoad(options) {
  118. this.orderId = options.orderId;
  119. },
  120. methods: {
  121. //打开退货理由弹窗
  122. openReason() {
  123. this.show = true;
  124. },
  125. //关闭弹窗
  126. close(value) {
  127. this.refundText = value;
  128. this.show = false;
  129. },
  130. // 删除图片
  131. deletePic(event) {
  132. this[`fileList${event.name}`].splice(event.index, 1);
  133. this.imgList.splice(event.index, 1);
  134. },
  135. // 新增图片
  136. async afterRead(event) {
  137. console.log(event);
  138. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  139. let lists = [].concat(event.file);
  140. let fileListLen = this[`fileList${event.name}`].length;
  141. lists.map((item) => {
  142. this[`fileList${event.name}`].push({
  143. ...item,
  144. // status: "uploading",
  145. // message: "上传中",
  146. });
  147. });
  148. for (let i = 0; i < lists.length; i++) {
  149. const result = await this.uploadFilePromise(lists[i].url);
  150. let item = this[`fileList${event.name}`][fileListLen];
  151. this[`fileList${event.name}`].splice(
  152. fileListLen,
  153. 1,
  154. Object.assign(item, {
  155. status: "success",
  156. message: "",
  157. url: result,
  158. })
  159. );
  160. fileListLen++;
  161. }
  162. },
  163. uploadFilePromise(url) {
  164. this.btnShow = false;
  165. return new Promise((resolve, reject) => {
  166. let a = uni.uploadFile({
  167. url: `${uni.$u.http.config.baseURL}/api/upload/images`, // 接口地址
  168. filePath: url,
  169. name: "file",
  170. formData: {
  171. user: "test",
  172. },
  173. success: (res) => {
  174. this.imgList.push(JSON.parse(res.data).data.filePath);
  175. setTimeout(() => {
  176. resolve(res.data.data);
  177. }, 1000);
  178. this.btnShow = true;
  179. },
  180. });
  181. });
  182. },
  183. //获取退款金额
  184. getRefundMoney(orderId) {
  185. uni.$u.http
  186. .post(`/api/order/calculate_refund_weight`, {
  187. order_id: orderId,
  188. order_goods_id: this.orderId,
  189. })
  190. .then((res) => {
  191. this.refund_price = res.refund_price;
  192. });
  193. },
  194. //获取订单商品信息
  195. getDetail() {
  196. uni.$u.http
  197. .post(`/api/order/order_goods_details`, {
  198. order_goods_id: this.orderId,
  199. })
  200. .then((res) => {
  201. this.goodsDetail = res;
  202. this.getRefundMoney(res.id);
  203. });
  204. },
  205. //提交申请
  206. submitApplication() {
  207. if (!this.btnShow) {
  208. uni.showToast({
  209. title: "请等待图片上传完毕",
  210. icon: "none",
  211. });
  212. return;
  213. }
  214. uni.$u.http
  215. .post(`/api/order/refund`, {
  216. order_id: this.goodsDetail.id,
  217. order_goods_id: this.orderId,
  218. refund_reason: this.refundText,
  219. refund_illustrate: this.value1,
  220. images: this.imgList.join(","),
  221. })
  222. .then((res) => {
  223. uni.showToast({
  224. title: "已申请,请等待审核",
  225. icon: "none",
  226. });
  227. uni.navigateBack({ delta: 1 });
  228. });
  229. },
  230. },
  231. mounted() {
  232. this.getDetail();
  233. uni.setNavigationBarTitle({
  234. title: "申请退款",
  235. });
  236. },
  237. };
  238. </script>
  239. <style lang="scss" scoped>
  240. .page {
  241. padding: 20rpx 24rpx;
  242. position: relative;
  243. padding-bottom: 166rpx;
  244. .commodity-information {
  245. padding: 28rpx 20rpx;
  246. background-color: #fff;
  247. border-radius: 16rpx;
  248. .commodity-1 {
  249. display: flex;
  250. .commodity-img {
  251. width: 156rpx;
  252. height: 156rpx;
  253. margin-right: 20rpx;
  254. border-radius: 10rpx;
  255. }
  256. .commodity-right {
  257. width: 73%;
  258. }
  259. .commodity-2 {
  260. display: flex;
  261. justify-content: space-between;
  262. width: 100%;
  263. .commodity-title {
  264. width: 328rpx;
  265. overflow: hidden;
  266. white-space: nowrap;
  267. text-overflow: ellipsis;
  268. margin-right: 38rpx;
  269. }
  270. }
  271. .commodity-3 {
  272. display: flex;
  273. justify-content: space-between;
  274. margin-top: 20rpx;
  275. color: #777;
  276. .specifications {
  277. font-size: 28rpx;
  278. color: #777;
  279. }
  280. }
  281. .commodity-price {
  282. margin-top: 24rpx;
  283. font-weight: 600;
  284. }
  285. }
  286. }
  287. .reason {
  288. background-color: #fff;
  289. padding: 0 20rpx;
  290. border-radius: 16rpx;
  291. margin-top: 20rpx;
  292. .application-reason {
  293. display: flex;
  294. justify-content: space-between;
  295. height: 104rpx;
  296. align-items: center;
  297. font-size: 28rpx;
  298. .right {
  299. display: flex;
  300. align-items: center;
  301. color: rgba(34, 34, 34, 0.6);
  302. font-size: 28rpx;
  303. }
  304. .right-icon {
  305. width: 32rpx;
  306. height: 32rpx;
  307. }
  308. }
  309. }
  310. .application-explain {
  311. margin-top: 20rpx;
  312. padding: 28rpx 20rpx;
  313. background-color: #fff;
  314. border-radius: 16rpx;
  315. .application-title {
  316. font-size: 28rpx;
  317. color: #222;
  318. margin-bottom: 18rpx;
  319. }
  320. .textarea {
  321. background-color: #f4f4f4;
  322. padding: 24rpx;
  323. border-radius: 16rpx;
  324. }
  325. .img-list {
  326. display: flex;
  327. margin-top: 20rpx;
  328. flex-wrap: wrap;
  329. .upload-img {
  330. width: 186rpx;
  331. height: 186rpx;
  332. border-radius: 16rpx;
  333. margin-right: 20rpx;
  334. }
  335. }
  336. .unload {
  337. width: 614rpx;
  338. height: 152rpx;
  339. text-align: center;
  340. border-radius: 16rpx;
  341. color: #929292;
  342. border: 2rpx dashed #979797;
  343. font-size: 20rpx;
  344. .text-content {
  345. margin-top: 80rpx;
  346. }
  347. }
  348. }
  349. .footer {
  350. position: fixed;
  351. bottom: 0;
  352. padding: 20rpx 24rpx 60rpx;
  353. background-color: #fff;
  354. left: 0;
  355. width: 100%;
  356. .btn {
  357. margin: 0;
  358. padding: 0;
  359. background-color: #f83224;
  360. color: #fff;
  361. border-radius: 44rpx;
  362. width: 94%;
  363. height: 88rpx;
  364. line-height: 88rpx;
  365. }
  366. }
  367. }
  368. .u-textarea {
  369. background-color: #f4f4f4;
  370. padding: 0;
  371. }
  372. ::v-deep .u-upload__deletable {
  373. width: 22px !important;
  374. height: 22px !important;
  375. }
  376. ::v-deep .u-upload__deletable__icon {
  377. top: 3px !important;
  378. }
  379. ::v-deep .u-icon__icon {
  380. font-size: 18px !important;
  381. }
  382. </style>