index.vue 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584
  1. <template>
  2. <div class="page">
  3. <div class="page__top">
  4. <div class="name">当前门店:</div>
  5. <div class="shop" v-if="!hideShop" @click="goShopSelect">
  6. <div class="shop__name">
  7. <!-- 最多6字 -->
  8. {{ curShopName }}
  9. <i class="iconfont iconyoujiantou shop__arrow"></i>
  10. </div>
  11. </div>
  12. </div>
  13. <ul class="tab">
  14. <li
  15. class="tab__item"
  16. :class="{ 'tab__item--active': tab === index }"
  17. v-for="(item, index) in list"
  18. :key="index"
  19. @click="setTab(index)"
  20. >
  21. <div class="tab__text">{{ item.title }}</div>
  22. <div class="tab__num" v-if="item.num > 0">{{ item.num }}</div>
  23. </li>
  24. </ul>
  25. <div class="page__content" v-if="!noPower">
  26. <swiper class="page__swiper" :current="tab" @change="swiperChange">
  27. <swiper-item v-for="(item, index) in list" :key="index">
  28. <scroll-view
  29. class="page__scroll"
  30. :scroll-y="true"
  31. @scrolltolower="getMoreList"
  32. >
  33. <ul class="order">
  34. <li
  35. class="order__item"
  36. v-for="(order, oindex) of orderList"
  37. :key="oindex"
  38. >
  39. <black
  40. v-if="
  41. order.afterSaleList &&
  42. order.afterSaleList.length
  43. "
  44. >
  45. <div
  46. class="apply"
  47. :class="{
  48. showAll: order.showAllAfterSale,
  49. }"
  50. >
  51. <div class="head">
  52. <div class="tit">退款</div>
  53. </div>
  54. <section
  55. class="info-item"
  56. v-for="afterSale of order.afterSaleList"
  57. :key="afterSale._id"
  58. >
  59. <div class="coll">
  60. <div class="coll-l coll-tit">
  61. {{
  62. afterSale.applyUser ===
  63. 0
  64. ? "顾客申请"
  65. : ""
  66. }}
  67. {{
  68. afterSale.refundType ===
  69. 0
  70. ? "全部退款"
  71. : "部分退款"
  72. }}
  73. <span class="status"
  74. >({{
  75. afterSale.status
  76. | afterSaleStatus
  77. }})</span
  78. >
  79. </div>
  80. <div class="date coll-r">
  81. {{
  82. afterSale.createdTime
  83. | timestampToDate(
  84. "MM-dd hh:mm"
  85. )
  86. }}
  87. </div>
  88. </div>
  89. <div class="coll">
  90. <div class="coll-l">
  91. 金额:<span
  92. class="money-red"
  93. >¥{{
  94. afterSale.refundAmount
  95. | minuteToRmb2
  96. }}</span
  97. >
  98. </div>
  99. <div class="date coll-r"></div>
  100. </div>
  101. <div
  102. class="coll"
  103. v-if="afterSale.productInfo"
  104. >
  105. <div class="coll-l">
  106. 商品:{{
  107. afterSale.productInfo
  108. .name
  109. }}
  110. </div>
  111. <div class="good-r coll-r">
  112. <!-- <span class="num">x{{afterSale.orderInfo.orderItemCount || ''}}</span> -->
  113. <span class="money"
  114. >¥{{
  115. afterSale.orderInfo
  116. .orderItemPayAmount
  117. | minuteToRmb2
  118. }}</span
  119. >
  120. </div>
  121. </div>
  122. <div
  123. class="coll"
  124. v-if="afterSale.applyReason"
  125. >
  126. <div class="coll-l">
  127. 理由:{{
  128. afterSale.applyReason
  129. }}
  130. </div>
  131. <div class="coll-r"></div>
  132. </div>
  133. <div
  134. class="btns"
  135. v-if="
  136. afterSale.status === 1 ||
  137. afterSale.status === 5
  138. "
  139. >
  140. <span
  141. class="btn"
  142. @click="applyNo(afterSale)"
  143. >拒绝</span
  144. >
  145. <span
  146. class="btn ok"
  147. @click="applyOk(afterSale)"
  148. >同意</span
  149. >
  150. </div>
  151. </section>
  152. <div
  153. class="toggle"
  154. v-if="
  155. order.afterSaleList &&
  156. order.afterSaleList.length > 1
  157. "
  158. >
  159. <span
  160. @click="afterSaleToggle(order)"
  161. >{{
  162. order.showAllAfterSale
  163. ? "收起信息"
  164. : "展开完整售后信息"
  165. }}</span
  166. >
  167. </div>
  168. </div>
  169. </black>
  170. <div class="order__main">
  171. <div class="order__top">
  172. <div class="des">
  173. <span>要求送达时间:</span
  174. >{{
  175. order.orderInfo
  176. .deliveryStartTime
  177. | dateFormat("MM-dd hh:mm")
  178. }}
  179. ——
  180. {{
  181. order.orderInfo.deliveryEndTime
  182. | dateFormat("MM-dd hh:mm")
  183. }}
  184. </div>
  185. <div class="index">
  186. <!-- <span class="symbol">#</span>155 -->
  187. </div>
  188. </div>
  189. <div class="order__top order__top2">
  190. <div class="des">
  191. <span>订单号:</span>
  192. {{ order.orderInfo.tradeNo }}
  193. <span
  194. class="copy"
  195. @click="
  196. copy(
  197. order.orderInfo.tradeNo
  198. )
  199. "
  200. >复制</span
  201. >
  202. <span class="order-status">{{
  203. order.orderInfo.status
  204. | orderStatus
  205. }}</span>
  206. </div>
  207. </div>
  208. <div class="tags">
  209. <span
  210. class="tag geekblue"
  211. v-if="
  212. order.orderInfo
  213. .deliveryMethod === 0
  214. "
  215. >快递</span
  216. >
  217. <span
  218. class="tag green"
  219. v-if="
  220. order.orderInfo
  221. .deliveryMethod === 1
  222. "
  223. >门店自提</span
  224. >
  225. <span
  226. class="tag magenta"
  227. v-if="
  228. order.orderInfo
  229. .deliveryMethod === 2
  230. "
  231. >送货上门</span
  232. >
  233. </div>
  234. <div class="order__con">
  235. <div class="order__title">
  236. {{
  237. order.fromAddress.address || ""
  238. }}
  239. ({{ order.storeInfo.name || "" }})
  240. </div>
  241. <p class="order__des">
  242. {{
  243. order.fromAddress.province +
  244. order.fromAddress.city +
  245. order.fromAddress.county ||
  246. ""
  247. }}
  248. </p>
  249. <block
  250. v-if="
  251. order.orderInfo
  252. .deliveryMethod === 2
  253. "
  254. >
  255. <div
  256. class="order__title on order__title2"
  257. >
  258. {{ order.toAddress.address }}
  259. </div>
  260. <p class="order__des on">
  261. {{
  262. order.toAddress.province +
  263. order.toAddress.city +
  264. order.toAddress.county
  265. }}
  266. </p>
  267. </block>
  268. </div>
  269. </div>
  270. <div class="remarks user-name">
  271. 收件人:{{ order.orderInfo.name }}
  272. {{ order.orderInfo.mobile }}
  273. </div>
  274. <!-- <div class="yuji" v-if="tab!==4">预计{{order | yujiTime}}送达</div> -->
  275. <div
  276. class="remarks"
  277. v-if="order.orderInfo.description"
  278. >
  279. 备注:{{ order.orderInfo.description }}
  280. </div>
  281. <div class="tools">
  282. <!-- afterSaleStatus 根据售后信息里RefundType字段判断手动加的值 -->
  283. <div class="oper">
  284. <!-- 只要有一条售后就不能申请取消订单 -->
  285. <!-- <span
  286. class="oper-btn"
  287. @click="cancelOrder(order)"
  288. v-if="!order.noShowCancelOrder"
  289. >取消订单</span
  290. > -->
  291. <black
  292. v-if="
  293. order.orderInfo.status !== 12 &&
  294. order.orderInfo.status !== 11
  295. "
  296. >
  297. <span
  298. class="oper-btn"
  299. v-if="
  300. order.afterSaleStatus !==
  301. 'all'
  302. "
  303. @click="refund(order)"
  304. >退款</span
  305. >
  306. <span
  307. class="oper-btn"
  308. @click="refundDifference(order)"
  309. >退差价</span
  310. >
  311. </black>
  312. </div>
  313. <div
  314. class="view-btn"
  315. @click="orderClick(order)"
  316. >
  317. 查看订单商品
  318. </div>
  319. </div>
  320. <div class="view-detail">
  321. <ul class="goods" v-if="order.viewDetail">
  322. <li
  323. v-for="good of order.orderItems"
  324. :key="good.orderItem.id"
  325. class="goods__item"
  326. >
  327. <div class="goods__content">
  328. <div class="goods__left">
  329. <my-image
  330. class="goods__img"
  331. :src="good.productImage"
  332. ></my-image>
  333. <div class="goods__info">
  334. <div
  335. class="goods__title"
  336. >
  337. {{
  338. good.productName ||
  339. ""
  340. }}
  341. </div>
  342. <div
  343. class="goods__spec"
  344. >
  345. {{
  346. good.skuName ||
  347. ""
  348. }}
  349. </div>
  350. </div>
  351. </div>
  352. <div class="goods__right">
  353. <div class="goods__price">
  354. ¥{{
  355. good.payAmount
  356. | minuteToRmb
  357. }}
  358. </div>
  359. <div class="goods__num">
  360. {{
  361. "X" +
  362. (good.count || "0")
  363. }}
  364. </div>
  365. </div>
  366. </div>
  367. </li>
  368. </ul>
  369. </div>
  370. <div class="order__btns" v-if="tab !== 6 && tab !== 5">
  371. <div
  372. class="btn tel"
  373. @click="makePhone(order)"
  374. >
  375. <my-image
  376. src="/static/icon/tal.png"
  377. ></my-image>
  378. <span>联系</span>
  379. </div>
  380. <div
  381. class="btn active"
  382. v-if="tab === 0"
  383. @click="receivingOrder(order, oindex)"
  384. >
  385. 接单
  386. </div>
  387. <div
  388. class="btn active"
  389. v-if="tab === 1"
  390. @click="packagedOrder(order, oindex)"
  391. >
  392. 打包完
  393. </div>
  394. <div
  395. class="btn active"
  396. v-if="tab === 2"
  397. @click="completeOrder(order, oindex)"
  398. >
  399. 已提货
  400. </div>
  401. <div
  402. class="btn active"
  403. v-if="tab === 3"
  404. @click="deliveryOrder(order, oindex)"
  405. >
  406. 配送中
  407. </div>
  408. <div
  409. class="btn active"
  410. v-if="tab === 4"
  411. @click="completeOrder(order, oindex)"
  412. >
  413. 完成订单
  414. </div>
  415. </div>
  416. </li>
  417. </ul>
  418. <div class="null" v-if="loading && !item.list.length">
  419. <img
  420. class="null__img"
  421. src="/static/common/order_null.jpg"
  422. alt
  423. />
  424. <div class="null__title">还没有相关数据哦</div>
  425. <!-- <div class="null__sub-title">xxx</div> -->
  426. </div>
  427. </scroll-view>
  428. </swiper-item>
  429. </swiper>
  430. </div>
  431. <div v-if="noPower" class="tips">
  432. 当前小程序需要绑定手机号使用,
  433. <span class="bind" @click="goBind">去绑定</span>
  434. </div>
  435. </div>
  436. </template>
  437. <script>
  438. import MyImage from "../../components/image/index";
  439. import fn from "../../common/js/function";
  440. export default {
  441. name: "",
  442. components: { MyImage },
  443. // 数据
  444. data() {
  445. return {
  446. tab: 0,
  447. list: [
  448. {
  449. title: "待接单",
  450. status: "20",
  451. num: 0,
  452. page: 1,
  453. list: [],
  454. },
  455. {
  456. title: "打包中",
  457. status: "21",
  458. num: 0,
  459. page: 1,
  460. list: [],
  461. },
  462. {
  463. title: "待提货",
  464. status: "26",
  465. num: 0,
  466. page: 1,
  467. list: [],
  468. },
  469. {
  470. title: "待配送",
  471. status: "23",
  472. num: 0,
  473. page: 1,
  474. list: [],
  475. },
  476. {
  477. title: "配送中",
  478. status: "24",
  479. num: 0,
  480. page: 1,
  481. list: [],
  482. },
  483. {
  484. title: "售后",
  485. status: "99",
  486. num: 0,
  487. page: 1,
  488. list: [],
  489. },
  490. {
  491. title: "已完成",
  492. status: "9",
  493. num: 0,
  494. page: 1,
  495. list: [],
  496. },
  497. ],
  498. loading: false, // 是否加载完成
  499. };
  500. },
  501. filters: {
  502. yujiTime(item) {
  503. let sTime = item.orderInfo.deliveryStartTime;
  504. sTime = sTime.replace(/-/g, "/");
  505. sTime = new Date(sTime);
  506. sTime = sTime.getTime();
  507. let instantDelivery = 0; // 配送时间 m
  508. let reserveReceivingOrdersTime = 0; // 预留接单时间 m
  509. if (item.storeExtraInfo) {
  510. instantDelivery =
  511. item.storeExtraInfo.deliveryConfig.instantDelivery *
  512. 60 *
  513. 1000;
  514. reserveReceivingOrdersTime =
  515. item.storeExtraInfo.deliveryConfig
  516. .reserveReceivingOrdersTime *
  517. 60 *
  518. 1000;
  519. }
  520. sTime += instantDelivery + reserveReceivingOrdersTime;
  521. return fn.getDateFormat(new Date(sTime), "MM-dd hh:mm");
  522. },
  523. afterSaleStatus(v) {
  524. switch (v) {
  525. case 1:
  526. return "退款审核中";
  527. case 2:
  528. return "等待商家退款";
  529. case 3:
  530. return "退款完成";
  531. case 4:
  532. return "退款取消";
  533. case 5:
  534. return "退货审核中";
  535. case 6:
  536. return "退货取消";
  537. case 7:
  538. return "退货完成";
  539. case 8:
  540. return "等待买家退货";
  541. case 9:
  542. return "等待确认收货";
  543. case 10:
  544. return "已拒绝";
  545. default:
  546. return "未知";
  547. }
  548. },
  549. orderStatus(v) {
  550. let obj = {
  551. 2: "待支付",
  552. 3: "待发货",
  553. 4: "待收货",
  554. 5: "拼团中",
  555. 6: "已取消",
  556. 7: "售后中",
  557. 8: "已删除",
  558. 9: "已完成",
  559. 10: "已评价",
  560. 11: "已售后",
  561. 12: "已退款",
  562. 20: "待接单",
  563. 21: "拣货中",
  564. 22: "拣货完成",
  565. 23: "待配送",
  566. 24: "配送中",
  567. 25: "已送达",
  568. 26: "待提货",
  569. 27: "已提货",
  570. 31: "订单已推单",
  571. 32: "订单已被骑手接单",
  572. 33: "骑手已到店",
  573. 34: "骑手已取餐",
  574. 35: "订单完成",
  575. 36: "订单失败",
  576. };
  577. return obj[v] || "未知";
  578. },
  579. },
  580. async onShow() {
  581. const self = this;
  582. // 未授权
  583. // if (this.$store.state.user.noPower === true) {
  584. // console.log("未授权重定向", this.$store.state.user);
  585. // this.idrouter.replace({
  586. // path: "/pages/index/bind",
  587. // isReLaunch: true,
  588. // query: {
  589. // openId: this.$store.state.user.openId,
  590. // },
  591. // });
  592. // return;
  593. // }
  594. self.fn.shareMenu();
  595. self.tab = this.$store.state.common.tabIndex;
  596. this.getList();
  597. },
  598. // onPullDownRefresh() {
  599. // const self = this;
  600. // self.getList();
  601. // },
  602. // 函数
  603. methods: {
  604. // 切换导航
  605. setTab(index) {
  606. const self = this;
  607. self.tab = index;
  608. this.$store.commit("common/update", {
  609. tabIndex: index,
  610. });
  611. },
  612. // swiper切换处理
  613. swiperChange(val) {
  614. const self = this;
  615. self.tab = val.target.current;
  616. self.getList();
  617. },
  618. // 获取订单列表
  619. getList() {
  620. const self = this;
  621. self.list[self.tab].page = 1;
  622. uni.showLoading({
  623. title: "加载中...",
  624. });
  625. self.api
  626. .get("/Order/GetList", {
  627. storeId: this.curShopId || "",
  628. status: self.list[self.tab].status,
  629. pageIndex: self.list[self.tab].page,
  630. pageSize: 20,
  631. })
  632. .then((res) => {
  633. uni.hideLoading();
  634. let data = res.data.data;
  635. if (data.length) {
  636. self.list[self.tab].page++;
  637. }
  638. // self.list[1].num = data.countInfo.unpaidOrderCount
  639. // self.list[2].num = data.countInfo.waitShippedOrderCount
  640. // self.list[3].num = data.countInfo.waitReceivedOrderCount
  641. data = this.afterSaleFactory(data);
  642. self.list[self.tab].list = data;
  643. self.loading = true;
  644. uni.hideLoading();
  645. });
  646. },
  647. // 获取更多内容
  648. getMoreList() {
  649. const self = this;
  650. self.api
  651. .get("/Order/GetList", {
  652. status: self.list[self.tab].status,
  653. pageIndex: self.list[self.tab].page,
  654. pageSize: 20,
  655. })
  656. .then((res) => {
  657. let data = res.data.data;
  658. if (data.length) {
  659. self.list[self.tab].page++;
  660. }
  661. data = this.afterSaleFactory(data);
  662. // self.list[1].num = data.countInfo.unpaidOrderCount;
  663. // self.list[2].num = data.countInfo.waitShippedOrderCount;
  664. // self.list[3].num = data.countInfo.waitReceivedOrderCount;
  665. self.list[self.tab].list = self.list[self.tab].list.concat(
  666. data
  667. );
  668. });
  669. },
  670. // 售后处理
  671. afterSaleFactory(data) {
  672. for (let item of data) {
  673. //判断是否有售货
  674. if (item.afterSaleList && item.afterSaleList.length) {
  675. let obj = {
  676. expire: [],
  677. now: [],
  678. };
  679. for (let afterSale of item.afterSaleList) {
  680. // 全部退款
  681. if (afterSale.refundType === 0) {
  682. item.noShowCancelOrder = true;
  683. item.afterSaleStatus = "all";
  684. }
  685. }
  686. }
  687. }
  688. return data;
  689. },
  690. // 打电话
  691. makePhone(val) {
  692. if (!val.orderInfo.mobile) {
  693. return this.fn.showToast("该订单无客户手机号");
  694. }
  695. uni.makePhoneCall({
  696. phoneNumber: val.orderInfo.mobile,
  697. });
  698. },
  699. // 接单
  700. receivingOrder(val, index) {
  701. this.api
  702. .get(
  703. "/Order/ReceivingOrder",
  704. {
  705. id: val.orderInfo.id,
  706. },
  707. {
  708. repeat: true,
  709. }
  710. )
  711. .then((res) => {
  712. if (res.success) {
  713. this.fn.showToast("接单成功");
  714. this.list[this.tab].list.splice(index, 1);
  715. this.list = [...this.list];
  716. } else {
  717. this.fn.showToast("接单失败:" + res.message);
  718. }
  719. });
  720. },
  721. // 打包完
  722. packagedOrder(val, index) {
  723. this.api
  724. .get(
  725. "/Order/PackagedOrder",
  726. {
  727. id: val.orderInfo.id,
  728. },
  729. {
  730. repeat: true,
  731. }
  732. )
  733. .then((res) => {
  734. if (res.success) {
  735. this.fn.showToast("打包完成功");
  736. this.list[this.tab].list.splice(index, 1);
  737. this.list = [...this.list];
  738. } else {
  739. this.fn.showToast("打包完失败:" + res.message);
  740. }
  741. });
  742. },
  743. // 提货
  744. completeOrder(val, index) {
  745. this.api
  746. .get(
  747. "/Order/CompleteOrder ",
  748. {
  749. id: val.orderInfo.id,
  750. },
  751. {
  752. repeat: true,
  753. }
  754. )
  755. .then((res) => {
  756. if (res.success) {
  757. this.fn.showToast("提货成功");
  758. this.list[this.tab].list.splice(index, 1);
  759. this.list = [...this.list];
  760. } else {
  761. this.fn.showToast("提货失败:" + res.message);
  762. }
  763. });
  764. },
  765. // 配送中
  766. deliveryOrder(val, index) {
  767. this.api
  768. .get(
  769. "/Order/DeliveryOrder",
  770. {
  771. id: val.orderInfo.id,
  772. },
  773. {
  774. repeat: true,
  775. }
  776. )
  777. .then((res) => {
  778. if (res.success) {
  779. this.fn.showToast("配送中成功");
  780. this.list[this.tab].list.splice(index, 1);
  781. this.list = [...this.list];
  782. } else {
  783. this.fn.showToast("配送中失败:" + res.message);
  784. }
  785. });
  786. },
  787. // 送达
  788. completeOrder(val, index) {
  789. this.api
  790. .get(
  791. "/Order/CompleteOrder",
  792. {
  793. id: val.orderInfo.id,
  794. },
  795. {
  796. repeat: true,
  797. }
  798. )
  799. .then((res) => {
  800. if (res.success) {
  801. this.fn.showToast("送达成功");
  802. this.list[this.tab].list.splice(index, 1);
  803. this.list = [...this.list];
  804. } else {
  805. this.fn.showToast("送达失败:" + res.message);
  806. }
  807. });
  808. },
  809. goBind() {
  810. this.router.push({
  811. path: "/pages/index/login",
  812. isReLaunch: true,
  813. query: {
  814. openId: this.$store.state.user.openId,
  815. },
  816. });
  817. },
  818. orderClick(order) {
  819. order.viewDetail = !order.viewDetail;
  820. this.list = [...this.list];
  821. },
  822. // 复制
  823. copy(val) {
  824. const self = this;
  825. uni.setClipboardData({
  826. data: val,
  827. success: () => {
  828. self.fn.showToast("复制成功");
  829. },
  830. });
  831. },
  832. // 部分退款
  833. refund(val) {
  834. this.$store.commit("common/update", {
  835. curOrder: val,
  836. });
  837. this.router.push({
  838. path: "/pages/index/refund",
  839. query: {
  840. id: val.orderInfo.id,
  841. },
  842. });
  843. },
  844. // 退差价
  845. refundDifference(val) {
  846. this.$store.commit("common/update", {
  847. curOrder: val,
  848. });
  849. this.router.push({
  850. path: "/pages/index/difference",
  851. query: {
  852. id: val.orderInfo.id,
  853. },
  854. });
  855. },
  856. // 取消订单
  857. cancelOrder(val) {
  858. this.fn
  859. .showModal({
  860. content: "确认取消该订单,并全部退款",
  861. })
  862. .then((res) => {
  863. if (res.confirm) {
  864. if (val.loading) {
  865. return;
  866. }
  867. val.loading = true;
  868. uni.showLoading({
  869. title: "提交中...",
  870. mask: true,
  871. });
  872. this.api
  873. .post(
  874. "/Order/Cancel",
  875. {
  876. query: true,
  877. id: val.orderInfo.id,
  878. },
  879. { pass: true }
  880. )
  881. .then((res) => {
  882. uni.hideLoading();
  883. val.loading = false;
  884. if (res.success) {
  885. this.fn.showToast("取消成功");
  886. this.getList();
  887. } else {
  888. this.fn.showToast(
  889. "取消失败:" + res.message
  890. );
  891. }
  892. });
  893. }
  894. });
  895. },
  896. // 拒绝退款
  897. applyNo(val) {
  898. if (val.loading) {
  899. return;
  900. }
  901. val.loading = true;
  902. this.api
  903. .post(
  904. "/Order/RejectRefund",
  905. {
  906. query: true,
  907. orderId: val.id,
  908. },
  909. { pass: true }
  910. )
  911. .then((res) => {
  912. val.loading = false;
  913. if (res.success) {
  914. this.fn.showToast("操作成功");
  915. this.getList();
  916. } else {
  917. this.fn.showToast("操作失败:" + res.message);
  918. }
  919. });
  920. },
  921. // 同意退款
  922. applyOk(val) {
  923. if (val.loading) {
  924. return;
  925. }
  926. val.loading = true;
  927. this.api
  928. .post(
  929. "/Order/AgreeRefund",
  930. {
  931. query: true,
  932. orderId: val.id,
  933. },
  934. { pass: true }
  935. )
  936. .then((res) => {
  937. val.loading = false;
  938. if (res.success) {
  939. this.fn.showToast("操作成功");
  940. this.getList();
  941. } else {
  942. this.fn.showToast("操作失败:" + res.message);
  943. }
  944. });
  945. },
  946. goShopSelect() {
  947. this.router.push("/pages/index/select");
  948. },
  949. afterSaleToggle(val) {
  950. val.showAllAfterSale = !val.showAllAfterSale;
  951. this.list = [...this.list];
  952. },
  953. },
  954. // 数据计算
  955. computed: {
  956. orderList() {
  957. return this.list[this.tab].list;
  958. },
  959. noPower() {
  960. return this.$store.state.user.noPower;
  961. },
  962. curShopName() {
  963. return this.$store.state.common.curShop.name || "不限门店";
  964. },
  965. curShopId() {
  966. return this.$store.state.common.curShop.id;
  967. },
  968. },
  969. // 数据监听
  970. watch: {},
  971. };
  972. </script>
  973. <style>
  974. page {
  975. height: 100%;
  976. }
  977. </style>
  978. <style lang="scss" scoped>
  979. .page {
  980. &__top {
  981. display: flex;
  982. align-items: center;
  983. justify-content: space-between;
  984. height: px(145);
  985. padding: 0 px(50);
  986. background-color: #fff;
  987. border-bottom: 1px solid #f1f1f1;
  988. }
  989. .name {
  990. font-size: px(36);
  991. color: #999;
  992. flex-shrink: 0;
  993. margin-right: px(20);
  994. }
  995. }
  996. .shop {
  997. display: flex;
  998. color: #666;
  999. font-size: px(36);
  1000. flex-shrink: 0;
  1001. margin-right: px(30);
  1002. width: 100%;
  1003. &__logo {
  1004. margin-right: px(20);
  1005. width: px(80);
  1006. height: px(80);
  1007. border-radius: 50%;
  1008. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  1009. overflow: hidden;
  1010. /deep/ img {
  1011. width: px(80);
  1012. height: px(80);
  1013. }
  1014. }
  1015. &__name {
  1016. display: flex;
  1017. white-space: nowrap;
  1018. align-items: center;
  1019. }
  1020. &__arrow {
  1021. margin-left: px(10);
  1022. transform: rotate(90deg);
  1023. }
  1024. }
  1025. .page {
  1026. display: flex;
  1027. flex-direction: column;
  1028. height: 100%;
  1029. &__content {
  1030. flex: 1;
  1031. position: relative;
  1032. }
  1033. &__swiper {
  1034. position: absolute;
  1035. top: 0;
  1036. left: 0;
  1037. z-index: 1;
  1038. width: 100%;
  1039. height: 100%;
  1040. }
  1041. &__scroll {
  1042. height: 100%;
  1043. }
  1044. }
  1045. .tab {
  1046. display: flex;
  1047. justify-content: space-around;
  1048. align-items: center;
  1049. width: 100%;
  1050. height: px(145);
  1051. background-color: #fff;
  1052. &__item {
  1053. position: relative;
  1054. display: flex;
  1055. justify-content: center;
  1056. align-items: center;
  1057. flex: 1;
  1058. height: 100%;
  1059. &--active:before {
  1060. content: "";
  1061. position: absolute;
  1062. bottom: 0;
  1063. left: 0;
  1064. z-index: 1;
  1065. width: 100%;
  1066. height: px(6);
  1067. background-color: #333;
  1068. }
  1069. }
  1070. &__text {
  1071. font-size: px(42);
  1072. color: #333;
  1073. }
  1074. &__num {
  1075. position: absolute;
  1076. top: px(30);
  1077. right: px(30);
  1078. z-index: 1;
  1079. display: flex;
  1080. justify-content: center;
  1081. align-items: center;
  1082. min-width: px(42);
  1083. height: px(42);
  1084. transform: translateX(50%);
  1085. padding: 0 px(15);
  1086. font-size: px(30);
  1087. color: #fff;
  1088. border-radius: px(21);
  1089. background-color: #262626;
  1090. }
  1091. }
  1092. .order {
  1093. padding-top: px(30);
  1094. &__item {
  1095. margin: px(20);
  1096. margin-top: px(30);
  1097. background-color: #fff;
  1098. border-radius: px(10);
  1099. box-shadow: 0px 2px 6px -3px rgba(0, 0, 0, 0.5);
  1100. padding-bottom: 1px;
  1101. }
  1102. &__main {
  1103. padding: px(40);
  1104. }
  1105. &__top {
  1106. display: flex;
  1107. justify-content: space-between;
  1108. align-items: center;
  1109. .des {
  1110. font-size: px(40);
  1111. width: 100%;
  1112. span {
  1113. color: #666;
  1114. }
  1115. }
  1116. .index {
  1117. font-size: px(55);
  1118. }
  1119. .symbol {
  1120. font-size: px(36);
  1121. }
  1122. }
  1123. &__top2 {
  1124. margin-top: px(20);
  1125. .copy {
  1126. display: inline-block;
  1127. font-size: px(32);
  1128. line-height: px(44);
  1129. padding: 0 px(10);
  1130. border: 1px solid #d9d9d9;
  1131. color: #333;
  1132. background-color: #fafafa;
  1133. margin-left: px(20);
  1134. border-radius: px(5);
  1135. }
  1136. }
  1137. .order-status {
  1138. float: right;
  1139. }
  1140. .tags {
  1141. margin-top: px(20);
  1142. .tag {
  1143. display: inline-block;
  1144. line-height: px(50);
  1145. padding: 0 px(15);
  1146. font-size: px(32);
  1147. border: 1px solid #d9d9d9;
  1148. color: #666;
  1149. background: #fafafa;
  1150. border-radius: px(4);
  1151. }
  1152. .magenta {
  1153. color: #eb2f96;
  1154. background: #fff0f6;
  1155. border-color: #ffadd2;
  1156. }
  1157. .green {
  1158. color: #52c41a;
  1159. background: #f6ffed;
  1160. border-color: #b7eb8f;
  1161. }
  1162. .geekblue {
  1163. color: #2f54eb;
  1164. background: #f0f5ff;
  1165. border-color: #adc6ff;
  1166. }
  1167. }
  1168. &__con {
  1169. margin-top: px(60);
  1170. padding-left: px(60);
  1171. position: relative;
  1172. &::after {
  1173. content: "";
  1174. position: absolute;
  1175. left: px(20);
  1176. top: px(60);
  1177. bottom: px(60);
  1178. width: px(3);
  1179. background-color: #a8a8a8;
  1180. }
  1181. }
  1182. &__title {
  1183. font-size: px(60);
  1184. position: relative;
  1185. color: #999;
  1186. &::after {
  1187. content: "";
  1188. position: absolute;
  1189. left: px(-50);
  1190. top: 50%;
  1191. transform: translate(0, -50%);
  1192. z-index: 1;
  1193. width: px(20);
  1194. height: px(20);
  1195. border-radius: 50%;
  1196. background-color: #a8a8a8;
  1197. }
  1198. &.on {
  1199. color: #333;
  1200. &::after {
  1201. background-color: #f68a3f;
  1202. }
  1203. }
  1204. }
  1205. &__title2 {
  1206. margin-top: px(60);
  1207. color: #999;
  1208. }
  1209. &__des {
  1210. font-size: px(36);
  1211. margin-top: px(20);
  1212. color: #999;
  1213. &.on {
  1214. color: #333;
  1215. }
  1216. }
  1217. &__btns {
  1218. display: flex;
  1219. border-top: 1px solid #dedede;
  1220. justify-content: space-between;
  1221. margin-bottom: -1px;
  1222. .btn {
  1223. height: px(130);
  1224. line-height: px(130);
  1225. text-align: center;
  1226. }
  1227. .active {
  1228. background-color: #f68a3f;
  1229. color: #fff;
  1230. font-size: px(50);
  1231. width: 100%;
  1232. }
  1233. .tel {
  1234. width: px(200);
  1235. flex-shrink: 0;
  1236. display: flex;
  1237. flex-direction: column;
  1238. justify-content: center;
  1239. align-items: center;
  1240. font-size: px(36);
  1241. line-height: 1;
  1242. /deep/ img {
  1243. width: px(60);
  1244. height: px(60);
  1245. margin-bottom: px(10);
  1246. }
  1247. }
  1248. }
  1249. .yuji {
  1250. padding: px(20) px(40) px(20) px(60);
  1251. font-size: px(36);
  1252. color: #999;
  1253. }
  1254. .remarks {
  1255. background-color: #fefaf1;
  1256. color: #6b5651;
  1257. font-size: px(36);
  1258. line-height: 1.5;
  1259. padding: px(10);
  1260. margin-left: px(60);
  1261. margin-bottom: px(30);
  1262. margin-right: px(40);
  1263. }
  1264. }
  1265. .caption {
  1266. display: flex;
  1267. align-items: center;
  1268. &__icon {
  1269. margin-top: px(5);
  1270. font-size: px(44);
  1271. color: #333;
  1272. }
  1273. &__title {
  1274. margin-left: px(30);
  1275. font-size: px(36);
  1276. color: #333;
  1277. }
  1278. &__arrows {
  1279. margin: px(5) 0 0 px(20);
  1280. font-size: px(44);
  1281. color: #333;
  1282. }
  1283. }
  1284. .null {
  1285. display: flex;
  1286. flex-direction: column;
  1287. justify-content: center;
  1288. align-items: center;
  1289. padding-top: px(145);
  1290. &__img {
  1291. width: px(739);
  1292. height: px(371);
  1293. }
  1294. &__title {
  1295. margin-top: px(20);
  1296. font-size: px(42);
  1297. color: #666;
  1298. }
  1299. &__sub-title {
  1300. margin-top: px(20);
  1301. font-size: px(42);
  1302. color: #999;
  1303. }
  1304. }
  1305. .tips {
  1306. padding: px(60) px(30);
  1307. text-align: center;
  1308. font-size: px(44);
  1309. .bind {
  1310. color: #3582fb;
  1311. }
  1312. }
  1313. .view-detail {
  1314. padding: px(20) px(40) px(50);
  1315. }
  1316. .tools {
  1317. display: flex;
  1318. justify-content: space-between;
  1319. align-items: center;
  1320. padding: px(0) px(40);
  1321. .oper-btn {
  1322. display: inline-block;
  1323. text-align: center;
  1324. line-height: px(66);
  1325. padding: 0 px(20);
  1326. font-size: px(38);
  1327. height: px(66);
  1328. border-radius: px(33);
  1329. border: 1px solid #f1f1f1;
  1330. margin-right: px(20);
  1331. }
  1332. .view-btn {
  1333. text-align: right;
  1334. font-size: px(38);
  1335. color: #3582fb;
  1336. }
  1337. }
  1338. .goods {
  1339. margin-top: px(40);
  1340. padding: 0 px(45);
  1341. background-color: #f5f5f5;
  1342. &__item {
  1343. min-height: px(225);
  1344. padding-top: px(30);
  1345. & ~ .goods__item {
  1346. border-top: solid px(3) #ececec;
  1347. }
  1348. &:first-child {
  1349. border-top: none;
  1350. }
  1351. }
  1352. &__content {
  1353. display: flex;
  1354. justify-content: space-between;
  1355. }
  1356. &__left {
  1357. display: flex;
  1358. flex: 1;
  1359. }
  1360. &__img /deep/ img {
  1361. width: px(170);
  1362. height: px(170);
  1363. border-radius: px(10);
  1364. }
  1365. &__info {
  1366. flex: 1;
  1367. margin-left: px(30);
  1368. }
  1369. &__title {
  1370. @include omits(2);
  1371. font-size: px(36);
  1372. color: #333;
  1373. }
  1374. &__spec {
  1375. @include omits(1);
  1376. margin-top: px(30);
  1377. font-size: px(36);
  1378. color: #999;
  1379. }
  1380. &__right {
  1381. display: flex;
  1382. flex-direction: column;
  1383. align-items: flex-end;
  1384. width: px(210);
  1385. }
  1386. &__price {
  1387. font-size: px(36);
  1388. color: #333;
  1389. }
  1390. &__num {
  1391. margin-top: px(20);
  1392. font-size: px(36);
  1393. color: #999;
  1394. }
  1395. &__bottom {
  1396. display: flex;
  1397. justify-content: space-between;
  1398. align-items: center;
  1399. padding: px(30) 0;
  1400. }
  1401. &__text {
  1402. font-size: px(36);
  1403. color: #999;
  1404. }
  1405. &__status {
  1406. display: flex;
  1407. align-items: center;
  1408. }
  1409. &__btn {
  1410. display: flex;
  1411. justify-content: center;
  1412. align-items: center;
  1413. height: px(70);
  1414. padding: 0 px(40);
  1415. margin-left: px(30);
  1416. font-size: px(36);
  1417. color: #666;
  1418. border-radius: px(35);
  1419. border: solid px(3) #999;
  1420. }
  1421. }
  1422. .remarks.user-name {
  1423. background-color: transparent;
  1424. font-size: px(44);
  1425. line-height: px(70);
  1426. font-weight: 500;
  1427. color: #333;
  1428. }
  1429. .apply {
  1430. padding: px(40);
  1431. border-bottom: 1px dashed #f1f1f1;
  1432. background-color: #fcfcfc;
  1433. &.showAll {
  1434. .info-item {
  1435. display: block !important;
  1436. }
  1437. }
  1438. .head {
  1439. display: flex;
  1440. justify-content: space-between;
  1441. align-items: center;
  1442. padding-bottom: px(10);
  1443. .tit {
  1444. font-size: px(50);
  1445. }
  1446. }
  1447. .info-item {
  1448. border-bottom: 1px solid #f1f1f1;
  1449. padding: px(15) 0;
  1450. & ~ .info-item {
  1451. display: none;
  1452. }
  1453. .coll {
  1454. display: flex;
  1455. justify-content: space-between;
  1456. align-items: center;
  1457. color: #666;
  1458. font-size: px(40);
  1459. padding: px(0) px(30);
  1460. margin-top: px(20);
  1461. }
  1462. .coll-tit {
  1463. color: #333;
  1464. font-size: px(44);
  1465. .status {
  1466. display: inline-flexbox;
  1467. margin-left: px(30);
  1468. }
  1469. }
  1470. .good-r {
  1471. .money {
  1472. display: inline-flex;
  1473. width: px(200);
  1474. justify-content: flex-end;
  1475. }
  1476. }
  1477. }
  1478. .btns {
  1479. display: flex;
  1480. justify-content: space-between;
  1481. align-items: center;
  1482. margin-top: px(30);
  1483. .btn {
  1484. width: 45%;
  1485. height: px(100);
  1486. border: 1px solid #cacaca;
  1487. border-radius: px(50);
  1488. font-size: px(44);
  1489. text-align: center;
  1490. line-height: px(100);
  1491. background-color: #fff;
  1492. }
  1493. .ok {
  1494. background-color: #ff4b26;
  1495. border-color: #ff4b26;
  1496. color: #fff;
  1497. }
  1498. }
  1499. .toggle {
  1500. margin-top: px(20);
  1501. font-size: px(40);
  1502. text-align: right;
  1503. color: #3582fb;
  1504. }
  1505. }
  1506. .money-red {
  1507. color: #ff475f;
  1508. }
  1509. </style>