detail.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <!-- 售后详情 -->
  2. <template>
  3. <s-layout title="售后详情" :navbar="!isEmpty(state.info) && state.loading ? 'inner' : 'normal'">
  4. <view class="content_box" v-if="!isEmpty(state.info) && state.loading">
  5. <!-- 步骤条 -->
  6. <view class="steps-box ss-flex" :style="[
  7. {
  8. marginTop: '-' + Number(statusBarHeight + 88) + 'rpx',
  9. paddingTop: Number(statusBarHeight + 88) + 'rpx',
  10. },
  11. ]">
  12. <view class="ss-flex">
  13. <view class="steps-item" v-for="(item, index) in state.list" :key="index">
  14. <view class="ss-flex">
  15. <text class="sicon-circleclose"
  16. v-if="state.list.length - 1 === index && [61, 62, 63].includes(state.info.status)" />
  17. <text class="sicon-circlecheck" v-else
  18. :class="state.active >= index ? 'activity-color' : 'info-color'" />
  19. <view v-if="state.list.length - 1 !== index" class="line"
  20. :class="state.active >= index ? 'activity-bg' : 'info-bg'" />
  21. </view>
  22. <view class="steps-item-title" :class="state.active >= index ? 'activity-color' : 'info-color'">
  23. {{ item.title }}
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <!-- 服务状态 -->
  29. <view class="status-box ss-flex ss-col-center ss-row-between ss-m-x-20"
  30. @tap="sheep.$router.go('/pages/order/aftersale/log', { id: state.id })">
  31. <view class="">
  32. <view class="status-text">
  33. {{ formatAfterSaleStatusDescription(state.info) }}
  34. </view>
  35. <view class="status-time">
  36. {{ sheep.$helper.timeFormat(state.info.updateTime, 'yyyy-mm-dd hh:MM:ss') }}
  37. </view>
  38. </view>
  39. <text class="ss-iconfont _icon-forward" style="color: #666" />
  40. </view>
  41. <!-- 退款金额 -->
  42. <view class="aftersale-money ss-flex ss-col-center ss-row-between">
  43. <view class="aftersale-money--title">退款总额</view>
  44. <view class="aftersale-money--num">¥{{ fen2yuan(state.info.refundPrice) }}</view>
  45. </view>
  46. <!-- 服务商品 -->
  47. <view class="order-shop">
  48. <s-goods-item :img=" state.info.picUrl" :title=" state.info.spuName" :titleWidth="480"
  49. :skuText="state.info.properties.map((property) => property.valueName).join(' ')"
  50. :num=" state.info.count" />
  51. </view>
  52. <!-- 服务内容 -->
  53. <view class="aftersale-content">
  54. <view class="aftersale-item ss-flex ss-col-center">
  55. <view class="item-title">服务单号:</view>
  56. <view class="item-content ss-m-r-16">{{ state.info.no }}</view>
  57. <button class="ss-reset-button copy-btn" @tap="onCopy">复制</button>
  58. </view>
  59. <view class="aftersale-item ss-flex ss-col-center">
  60. <view class="item-title">申请时间:</view>
  61. <view class="item-content">
  62. {{ sheep.$helper.timeFormat(state.info.createTime, 'yyyy-mm-dd hh:MM:ss') }}
  63. </view>
  64. </view>
  65. <view class="aftersale-item ss-flex ss-col-center">
  66. <view class="item-title">售后类型:</view>
  67. <view class="item-content">{{ state.info.way === 10 ? '仅退款' : '退款退货' }}</view>
  68. </view>
  69. <view class="aftersale-item ss-flex ss-col-center">
  70. <view class="item-title">申请原因:</view>
  71. <view class="item-content">{{ state.info.applyReason }}</view>
  72. </view>
  73. <view class="aftersale-item ss-flex ss-col-center">
  74. <view class="item-title">相关描述:</view>
  75. <view class="item-content">{{ state.info.applyDescription }}</view>
  76. </view>
  77. </view>
  78. </view>
  79. <!-- 操作区 -->
  80. <s-empty v-if="isEmpty(state.info) && state.loading" icon="/static/order-empty.png" text="暂无该订单售后详情" />
  81. <su-fixed bottom placeholder bg="bg-white" v-if="!isEmpty(state.info)">
  82. <view class="foot_box">
  83. <button class="ss-reset-button btn" v-if="state.info.buttons?.includes('cancel')"
  84. @tap="onApply(state.info.id)">
  85. 取消申请
  86. </button>
  87. <button class="ss-reset-button btn" v-if="state.info.buttons?.includes('delivery')"
  88. @tap="sheep.$router.go('/pages/order/aftersale/return-delivery', { id: state.info.id })">
  89. 填写退货
  90. </button>
  91. <button class="ss-reset-button contcat-btn btn" @tap="sheep.$router.go('/pages/chat/index')">
  92. 联系客服
  93. </button>
  94. </view>
  95. </su-fixed>
  96. </s-layout>
  97. </template>
  98. <script setup>
  99. import sheep from '@/sheep';
  100. import {
  101. onLoad
  102. } from '@dcloudio/uni-app';
  103. import {
  104. reactive,
  105. computed,
  106. watch
  107. } from 'vue';
  108. import {
  109. isEmpty
  110. } from 'lodash';
  111. import {
  112. showAuthModal
  113. } from '@/sheep/hooks/useModal';
  114. import {
  115. fen2yuan,
  116. formatAfterSaleStatusDescription,
  117. handleAfterSaleButtons
  118. } from '@/sheep/hooks/useGoods';
  119. import AfterSaleApi from '@/sheep/api/trade/afterSale';
  120. const userInfo = sheep.$store('user').userInfo;
  121. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  122. const headerBg = sheep.$url.css('/static/img/shop/order/order_bg.png');
  123. const state = reactive({
  124. id: 0, // 售后编号
  125. info: {}, // 收货信息
  126. loading: false,
  127. active: 0, // 在 list 的激活位置
  128. list: [{
  129. title: '提交申请',
  130. }, {
  131. title: '处理中',
  132. }, {
  133. title: '完成'
  134. }], // 时间轴
  135. });
  136. function onApply(id) {
  137. uni.showModal({
  138. title: '提示',
  139. content: '确定要取消此申请吗?',
  140. success: async function(res) {
  141. if (!res.confirm) {
  142. return;
  143. }
  144. const {
  145. code
  146. } = await AfterSaleApi.cancelAfterSale(id);
  147. if (code === 0) {
  148. await getDetail(id);
  149. }
  150. },
  151. });
  152. }
  153. // 复制
  154. const onCopy = () => {
  155. sheep.$helper.copyText(state.info.no);
  156. };
  157. async function getDetail(id) {
  158. state.loading = true;
  159. const {
  160. code,
  161. data
  162. } = await AfterSaleApi.getAfterSale(id);
  163. if (code !== 0) {
  164. state.info = null;
  165. return;
  166. }
  167. state.info = data;
  168. handleAfterSaleButtons(state.info);
  169. // 处理时间轴
  170. if ([10].includes(state.info.status)) {
  171. state.active = 0;
  172. } else if ([20, 30].includes(state.info.status)) {
  173. state.active = 1;
  174. } else if ([40, 50].includes(state.info.status)) {
  175. state.active = 2;
  176. } else if ([61, 62, 63].includes(state.info.status)) {
  177. state.active = 2;
  178. }
  179. }
  180. const isLogin = computed(() => sheep.$store('user').isLogin);
  181. // 监听到在这个页面登陆,并刷新页面
  182. watch(
  183. () => isLogin.value,
  184. (newVal) => {
  185. if (newVal) {
  186. window.location.reload()
  187. }
  188. }
  189. );
  190. onLoad((options) => {
  191. //如果没登陆就进来则有可能是在微信消息推送进来的 提示登陆
  192. if (!isLogin.value) {
  193. showAuthModal();
  194. sheep.$helper.toast("您尚未登录,请登录:" + options.username + "后再试", 3000);
  195. return false;
  196. } else {
  197. // 如果
  198. if (options.username) {
  199. // 如果登陆了但不是该订单的账号,提示有问题
  200. console.log(JSON.parse(uni.getStorageSync("user-store")).userInfo.username)
  201. if (options.username != JSON.parse(uni.getStorageSync("user-store")).userInfo.username) {
  202. sheep.$helper.toast("您当前登录的账号是" + JSON.parse(uni.getStorageSync("user-store")).userInfo.username + ",请切换到" + options.username +
  203. "后再试",
  204. 3000);
  205. return false;
  206. }
  207. }
  208. }
  209. if (!options.id) {
  210. sheep.$helper.toast(`缺少订单信息,请检查`);
  211. return
  212. }
  213. state.id = options.id;
  214. getDetail(options.id);
  215. });
  216. </script>
  217. <style lang="scss" scoped>
  218. // 步骤条
  219. .steps-box {
  220. width: 100%;
  221. height: 190rpx;
  222. background: v-bind(headerBg) no-repeat,
  223. linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  224. background-size: 750rpx 100%;
  225. padding-left: 72rpx;
  226. .steps-item {
  227. .sicon-circleclose {
  228. font-size: 24rpx;
  229. color: #fff;
  230. }
  231. .sicon-circlecheck {
  232. font-size: 24rpx;
  233. }
  234. .steps-item-title {
  235. font-size: 24rpx;
  236. font-weight: 400;
  237. margin-top: 16rpx;
  238. margin-left: -36rpx;
  239. width: 100rpx;
  240. text-align: center;
  241. }
  242. }
  243. }
  244. .activity-color {
  245. color: #fff;
  246. }
  247. .info-color {
  248. color: rgba(#fff, 0.4);
  249. }
  250. .activity-bg {
  251. background: #fff;
  252. }
  253. .info-bg {
  254. background: rgba(#fff, 0.4);
  255. }
  256. .line {
  257. width: 270rpx;
  258. height: 4rpx;
  259. }
  260. // 服务状态
  261. .status-box {
  262. position: relative;
  263. z-index: 3;
  264. background-color: #fff;
  265. border-radius: 20rpx 20rpx 0px 0px;
  266. padding: 20rpx;
  267. margin-top: -20rpx;
  268. .status-text {
  269. font-size: 28rpx;
  270. font-weight: 500;
  271. color: rgba(51, 51, 51, 1);
  272. margin-bottom: 20rpx;
  273. }
  274. .status-time {
  275. font-size: 24rpx;
  276. font-weight: 400;
  277. color: rgba(153, 153, 153, 1);
  278. }
  279. }
  280. // 退款金额
  281. .aftersale-money {
  282. background-color: #fff;
  283. height: 98rpx;
  284. padding: 0 20rpx;
  285. margin: 20rpx;
  286. .aftersale-money--title {
  287. font-size: 28rpx;
  288. font-weight: 500;
  289. color: rgba(51, 51, 51, 1);
  290. }
  291. .aftersale-money--num {
  292. font-size: 28rpx;
  293. font-family: OPPOSANS;
  294. font-weight: 500;
  295. color: #ff3000;
  296. }
  297. }
  298. // order-shop
  299. .order-shop {
  300. padding: 20rpx;
  301. background-color: #fff;
  302. margin: 0 20rpx 20rpx 20rpx;
  303. }
  304. // 服务内容
  305. .aftersale-content {
  306. background-color: #fff;
  307. padding: 20rpx;
  308. margin: 0 20rpx;
  309. .aftersale-item {
  310. height: 60rpx;
  311. .copy-btn {
  312. background: #eeeeee;
  313. color: #333;
  314. border-radius: 20rpx;
  315. width: 75rpx;
  316. height: 40rpx;
  317. font-size: 22rpx;
  318. }
  319. .item-title {
  320. color: #999;
  321. font-size: 28rpx;
  322. }
  323. .item-content {
  324. color: #333;
  325. font-size: 28rpx;
  326. }
  327. }
  328. }
  329. // 底部功能
  330. .foot_box {
  331. height: 100rpx;
  332. background-color: #fff;
  333. display: flex;
  334. align-items: center;
  335. justify-content: flex-end;
  336. .btn {
  337. width: 160rpx;
  338. line-height: 60rpx;
  339. background: rgba(238, 238, 238, 1);
  340. border-radius: 30rpx;
  341. padding: 0;
  342. margin-right: 20rpx;
  343. font-size: 26rpx;
  344. font-weight: 400;
  345. color: rgba(51, 51, 51, 1);
  346. }
  347. }
  348. </style>