applicationRefund.vue 11 KB

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