apply.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <!-- 售后申请 -->
  2. <template>
  3. <s-layout title="申请售后">
  4. <!-- 售后商品 -->
  5. <view class="goods-box">
  6. <s-goods-item
  7. :img="state.item.picUrl"
  8. :title="state.item.spuName"
  9. :skuText="state.item.properties?.map((property) => property.valueName).join(' ')"
  10. :price="state.item.price"
  11. :num="state.item.count"
  12. />
  13. </view>
  14. <uni-forms ref="form" v-model="formData" :rules="rules" label-position="top">
  15. <!-- 售后类型 -->
  16. <view class="refund-item">
  17. <view class="item-title ss-m-b-20">售后类型</view>
  18. <view class="ss-flex-col">
  19. <radio-group @change="onRefundChange">
  20. <label
  21. class="ss-flex ss-col-center ss-p-y-10"
  22. v-for="(item, index) in state.wayList"
  23. :key="index"
  24. >
  25. <radio
  26. :checked="formData.type === item.value"
  27. color="var(--ui-BG-Main)"
  28. style="transform: scale(0.8)"
  29. :value="item.value"
  30. />
  31. <view class="item-value ss-m-l-8">{{ item.text }}</view>
  32. </label>
  33. </radio-group>
  34. </view>
  35. </view>
  36. <!-- 退款金额 -->
  37. <view class="refund-item ss-flex ss-col-center ss-row-between" @tap="state.showModal = true">
  38. <text class="item-title">退款金额</text>
  39. <view class="ss-flex refund-cause ss-col-center">
  40. <text class="ss-m-r-20">¥{{ fen2yuan(state.item.payPrice) }}</text>
  41. </view>
  42. </view>
  43. <!-- 申请原因 -->
  44. <view class="refund-item ss-flex ss-col-center ss-row-between" @tap="state.showModal = true">
  45. <text class="item-title">申请原因</text>
  46. <view class="ss-flex refund-cause ss-col-center">
  47. <text class="ss-m-r-20" v-if="formData.applyReason">{{ formData.applyReason }}</text>
  48. <text class="ss-m-r-20" v-else>请选择申请原因~</text>
  49. <text class="cicon-forward" style="height: 28rpx"></text>
  50. </view>
  51. </view>
  52. <!-- 留言 -->
  53. <view class="refund-item">
  54. <view class="item-title ss-m-b-20">相关描述</view>
  55. <view class="describe-box">
  56. <uni-easyinput
  57. :inputBorder="false"
  58. class="describe-content"
  59. type="textarea"
  60. maxlength="120"
  61. autoHeight
  62. v-model="formData.applyDescription"
  63. placeholder="客官~请描述您遇到的问题,建议上传照片"
  64. />
  65. <!-- TODO 非繁人:上传的测试 -->
  66. <view class="upload-img">
  67. <s-uploader
  68. v-model:url="formData.images"
  69. fileMediatype="image"
  70. limit="9"
  71. mode="grid"
  72. :imageStyles="{ width: '168rpx', height: '168rpx' }"
  73. />
  74. </view>
  75. </view>
  76. </view>
  77. </uni-forms>
  78. <!-- 底部按钮 -->
  79. <su-fixed bottom placeholder>
  80. <view class="foot-wrap">
  81. <view class="foot_box ss-flex ss-col-center ss-row-between ss-p-x-30">
  82. <button class="ss-reset-button contcat-btn" @tap="sheep.$router.go('/pages/chat/index')">
  83. 联系客服
  84. </button>
  85. <button class="ss-reset-button ui-BG-Main-Gradient sub-btn" @tap="submit">提交</button>
  86. </view>
  87. </view>
  88. </su-fixed>
  89. <!-- 申请原因弹窗 -->
  90. <su-popup :show="state.showModal" round="10" :showClose="true" @close="state.showModal = false">
  91. <view class="modal-box page_box">
  92. <view class="modal-head item-title head_box ss-flex ss-row-center ss-col-center">
  93. 申请原因
  94. </view>
  95. <view class="modal-content content_box">
  96. <radio-group @change="onChange">
  97. <label
  98. class="radio ss-flex ss-col-center"
  99. v-for="item in state.reasonList"
  100. :key="item"
  101. >
  102. <view class="ss-flex-1 ss-p-20">{{ item }}</view>
  103. <radio
  104. :value="item"
  105. color="var(--ui-BG-Main)"
  106. :checked="item === state.currentValue"
  107. />
  108. </label>
  109. </radio-group>
  110. </view>
  111. <view class="modal-foot foot_box ss-flex ss-row-center ss-col-center">
  112. <button class="ss-reset-button close-btn ui-BG-Main-Gradient" @tap="onReason">
  113. 确定
  114. </button>
  115. </view>
  116. </view>
  117. </su-popup>
  118. </s-layout>
  119. </template>
  120. <script setup>
  121. import sheep from '@/sheep';
  122. import { onLoad } from '@dcloudio/uni-app';
  123. import { reactive, ref } from 'vue';
  124. import OrderApi from '@/sheep/api/trade/order';
  125. import TradeConfigApi from '@/sheep/api/trade/config';
  126. import { fen2yuan } from '@/sheep/hooks/useGoods';
  127. import AfterSaleApi from '@/sheep/api/trade/afterSale';
  128. const form = ref(null);
  129. const state = reactive({
  130. orderId: 0, // 订单编号
  131. itemId: 0, // 订单项编号
  132. order: {}, // 订单
  133. item: {}, // 订单项
  134. config: {}, // 交易配置
  135. // 售后类型
  136. wayList: [
  137. {
  138. text: '仅退款',
  139. value: '10',
  140. },
  141. {
  142. text: '退款退货',
  143. value: '20',
  144. },
  145. ],
  146. reasonList: [], // 可选的申请原因数组
  147. showModal: false, // 是否显示申请原因弹窗
  148. currentValue: '' // 当前选择的售后原因
  149. });
  150. const formData = reactive({
  151. way: '',
  152. applyReason: '',
  153. applyDescription: '',
  154. images: [],
  155. });
  156. const rules = reactive({});
  157. // 提交表单
  158. async function submit() {
  159. // #ifdef MP
  160. sheep.$platform.useProvider('wechat').subscribeMessage('order_aftersale_change');
  161. // #endif
  162. let data = {
  163. orderItemId: state.itemId,
  164. refundPrice: state.item.payPrice,
  165. ...formData,
  166. };
  167. const { code } = await AfterSaleApi.createAfterSale(data);
  168. if (code === 0) {
  169. uni.showToast({
  170. title: '申请成功',
  171. });
  172. sheep.$router.go('/pages/order/aftersale/list');
  173. }
  174. }
  175. // 选择售后类型
  176. function onRefundChange(e) {
  177. formData.way = e.detail.value;
  178. // 清理理由
  179. state.reasonList =
  180. formData.way === '10'
  181. ? state.config.afterSaleRefundReasons || []
  182. : state.config.afterSaleReturnReasons || [];
  183. formData.applyReason = '';
  184. state.currentValue = '';
  185. }
  186. // 选择申请原因
  187. function onChange(e) {
  188. state.currentValue = e.detail.value;
  189. }
  190. // 确定
  191. function onReason() {
  192. formData.applyReason = state.currentValue;
  193. state.showModal = false;
  194. }
  195. onLoad(async (options) => {
  196. // 解析参数
  197. if (!options.orderId || !options.itemId) {
  198. sheep.$helper.toast(`缺少订单信息,请检查`);
  199. return;
  200. }
  201. state.orderId = options.orderId;
  202. state.itemId = parseInt(options.itemId);
  203. // 读取订单信息
  204. const { code, data } = await OrderApi.getOrder(state.orderId);
  205. if (code !== 0) {
  206. return;
  207. }
  208. state.order = data;
  209. state.item = data.items.find((item) => item.id === state.itemId) || {};
  210. // 设置选项
  211. if (state.order.status === 10) {
  212. state.wayList.splice(1, 1);
  213. }
  214. // 读取配置
  215. state.config = (await TradeConfigApi.getTradeConfig()).data;
  216. });
  217. </script>
  218. <style lang="scss" scoped>
  219. .item-title {
  220. font-size: 30rpx;
  221. font-weight: bold;
  222. color: rgba(51, 51, 51, 1);
  223. // margin-bottom: 20rpx;
  224. }
  225. // 售后项目
  226. .refund-item {
  227. background-color: #fff;
  228. border-bottom: 1rpx solid #f5f5f5;
  229. padding: 30rpx;
  230. &:last-child {
  231. border: none;
  232. }
  233. // 留言
  234. .describe-box {
  235. width: 690rpx;
  236. background: rgba(249, 250, 251, 1);
  237. padding: 30rpx;
  238. box-sizing: border-box;
  239. border-radius: 20rpx;
  240. .describe-content {
  241. height: 200rpx;
  242. font-size: 24rpx;
  243. font-weight: 400;
  244. color: #333;
  245. }
  246. }
  247. // 联系方式
  248. .input-box {
  249. height: 84rpx;
  250. background: rgba(249, 250, 251, 1);
  251. border-radius: 20rpx;
  252. }
  253. }
  254. .goods-box {
  255. background: #fff;
  256. padding: 20rpx;
  257. margin-bottom: 20rpx;
  258. }
  259. .foot-wrap {
  260. height: 100rpx;
  261. width: 100%;
  262. }
  263. .foot_box {
  264. height: 100rpx;
  265. background-color: #fff;
  266. .sub-btn {
  267. width: 336rpx;
  268. line-height: 74rpx;
  269. border-radius: 38rpx;
  270. color: rgba(#fff, 0.9);
  271. font-size: 28rpx;
  272. }
  273. .contcat-btn {
  274. width: 336rpx;
  275. line-height: 74rpx;
  276. background: rgba(238, 238, 238, 1);
  277. border-radius: 38rpx;
  278. font-size: 28rpx;
  279. font-weight: 400;
  280. color: rgba(51, 51, 51, 1);
  281. }
  282. }
  283. .modal-box {
  284. width: 750rpx;
  285. // height: 680rpx;
  286. border-radius: 30rpx 30rpx 0 0;
  287. background: #fff;
  288. .modal-head {
  289. height: 100rpx;
  290. font-size: 30rpx;
  291. }
  292. .modal-content {
  293. font-size: 28rpx;
  294. }
  295. .modal-foot {
  296. .close-btn {
  297. width: 710rpx;
  298. line-height: 80rpx;
  299. border-radius: 40rpx;
  300. color: rgba(#fff, 0.9);
  301. }
  302. }
  303. }
  304. .success-box {
  305. width: 600rpx;
  306. padding: 90rpx 0 64rpx 0;
  307. .cicon-check-round {
  308. font-size: 96rpx;
  309. color: #04b750;
  310. }
  311. .success-title {
  312. font-weight: 500;
  313. color: #333333;
  314. font-size: 32rpx;
  315. }
  316. .success-btn {
  317. width: 492rpx;
  318. height: 70rpx;
  319. background: linear-gradient(90deg, var(--ui-BG-Main-gradient), var(--ui-BG-Main));
  320. border-radius: 35rpx;
  321. }
  322. }
  323. </style>