detail.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  1. <template>
  2. <div class="sellOutOrderDetail pagePadding">
  3. <div style="width: 100%; padding: 0 0 200px 0" v-if="powers.some((i) => i == '007')">
  4. <div class="detail-page-title">
  5. <span>发货单编号:</span><span v-if="sitem">{{ sitem.outCode }}</span>
  6. <el-button
  7. class="fr"
  8. v-if="
  9. (status + '' === '2' || status + '' === '3') &&
  10. powers.some((i) => i == '049') &&
  11. sitem &&
  12. sitem.order_source !== '6'
  13. "
  14. type="primary"
  15. plain
  16. :size="'mini'"
  17. style="margin: 0 0 0 10px"
  18. @click="wellReturnCode"
  19. >新建售后申请单
  20. </el-button>
  21. <el-button
  22. class="fr"
  23. v-if="status + '' === '2' && ppowers.some((i) => i == '2')"
  24. type="primary"
  25. plain
  26. :size="'mini'"
  27. style="margin: 0 0 0 10px"
  28. @click="wentReceive"
  29. >确认收货
  30. </el-button>
  31. <el-button
  32. class="fr"
  33. v-if="Number(status) >= 2"
  34. type="primary"
  35. plain
  36. :size="'mini'"
  37. style="margin: 0 0 0 10px"
  38. @click="handleShare"
  39. >分享
  40. </el-button>
  41. </div>
  42. <el-tabs v-model="activeTabs">
  43. <el-tab-pane label="业务详情" name="1">
  44. <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
  45. <el-collapse-item title="发货单详情" name="1">
  46. <show-data-table
  47. :newTime="newTime"
  48. v-if="newTime !== ''"
  49. :sitem="sitem"
  50. :columns="showColumns"
  51. >
  52. <template slot="status">
  53. <el-tag
  54. :size="'mini'"
  55. :type="sitem.status == '0' ? 'warning' : ''"
  56. v-text="
  57. (statusOptions.find((item) => item.value == sitem.status) || {})
  58. .label || '--'
  59. "
  60. ></el-tag>
  61. </template>
  62. <!-- <template slot="order_type">
  63. <el-tag
  64. :size="'mini'"
  65. v-text="
  66. (
  67. xs_order_type_options.find(
  68. (item) => item.id == resitem.order_type
  69. ) || {}
  70. ).label || '--'
  71. "
  72. ></el-tag>
  73. </template> -->
  74. <template slot="sale_price">
  75. <!-- <span>{{
  76. private_field &&
  77. private_field.length > 0 &&
  78. private_field.some((item) => item == "2")
  79. ? sitem.sale_price
  80. : "***"
  81. }}</span> -->
  82. <span>{{displayPrivateField(isDisplayPrivateField('2'), sitem.sale_price)}}</span>
  83. </template>
  84. <template slot="total_price">
  85. <span>
  86. <!-- {{private_field &&
  87. private_field.length > 0 &&
  88. private_field.some((item) => item == "2")
  89. ? sitem.total_price
  90. : "***"}} -->
  91. {{displayPrivateField(isDisplayPrivateField('2'), sitem.sale_price)}}
  92. </span>
  93. </template>
  94. <!-- <template slot="saleinfo">
  95. <el-table :data="sitem.saleinfo" size="mini" border>
  96. <el-table-column prop="bnCode" label="批次号" width="160" show-overflow-tooltip/>
  97. <el-table-column prop="wsm_code" label="仓库编号" width="170" show-overflow-tooltip/>
  98. <el-table-column prop="wsm_name" label="仓库名称" width="260" show-overflow-tooltip/>
  99. <el-table-column prop="num" label="批次数量" show-overflow-tooltip/>
  100. <el-table-column prop="send_num" label="可发货数量" width="100px" show-overflow-tooltip/>
  101. <el-table-column prop="th_num" label="退货数量" show-overflow-tooltip/>
  102. <el-table-column prop="origin_price" label="成本" show-overflow-tooltip/>
  103. </el-table>
  104. </template> -->
  105. </show-data-table>
  106. </el-collapse-item>
  107. <el-collapse-item title="发货工单" name="3">
  108. <child-list :sitem="sitem" />
  109. </el-collapse-item>
  110. <el-collapse-item title="商品信息" name="2">
  111. <show-goods-data-table
  112. :newTime="newTime"
  113. v-if="newTime !== ''"
  114. :type="sitem.order_type"
  115. :skucode="sitem.skuCode"
  116. :spucode="sitem.good_code"
  117. />
  118. </el-collapse-item>
  119. <!-- <el-collapse-item
  120. title="库管发货"
  121. name="3"
  122. v-if="
  123. status + '' === '1' &&
  124. ppowers.some((i) => i == '1') &&
  125. sitem &&
  126. (sitem.order_type + '' === '1' ||
  127. (
  128. (sitem.order_type + '' === '2' ||
  129. sitem.order_type + '' === '3' ||
  130. sitem.order_type + '' === '4')))
  131. "
  132. >
  133. <want-deliver
  134. :newTime="newTime"
  135. v-if="newTime !== ''"
  136. :sitem="sitem"
  137. @refresh="initData"
  138. />
  139. </el-collapse-item> -->
  140. <el-collapse-item
  141. title="售后申请单结果"
  142. name="4"
  143. v-if="
  144. returnCode && returnCode_type && sitem && sitem.order_return && resitem
  145. "
  146. >
  147. <show-data-table
  148. :newTime="newTime"
  149. v-if="newTime !== '' && resitem"
  150. :sitem="resitem"
  151. :border="
  152. !(
  153. (resitem.is_receive + '' === '1' && returnCode_type + '' === '4') ||
  154. (resitem.is_receive + '' === '1' && returnCode_type + '' === '5')
  155. )
  156. "
  157. :columns="rshowColumns"
  158. >
  159. <template slot="addr">
  160. <span>
  161. {{ sitem.contactor }}---{{ sitem.mobile }}---{{ sitem.addr_cn }}{{ sitem.addr }}
  162. </span>
  163. </template>
  164. <template slot="company">
  165. <span>{{ sitem.companyName }}</span>
  166. <el-popover placement="top" width="300" trigger="hover">
  167. <ul>
  168. <li>
  169. <span>业务企业编号:</span><span>{{ resitem.companyNo }}</span>
  170. </li>
  171. </ul>
  172. <i slot="reference" class="el-icon-warning-outline fr" />
  173. </el-popover>
  174. </template>
  175. <template slot="customer">
  176. <span>{{ resitem.customer_name }}</span>
  177. <el-popover placement="top" width="300" trigger="hover">
  178. <ul>
  179. <li>
  180. <span>客户公司编号:</span><span>{{ resitem.customer_code }}</span>
  181. </li>
  182. </ul>
  183. <i slot="reference" class="el-icon-warning-outline fr" />
  184. </el-popover>
  185. </template>
  186. <template slot="loop_total">
  187. <span>供应商负责人共修改供应商审批结果 {{resitem.loop_total}} 次</span>
  188. </template>
  189. <template slot="supplier">
  190. <span>{{ resitem.supplierName }}</span>
  191. <el-popover placement="top" width="300" trigger="hover">
  192. <ul>
  193. <li>
  194. <span>供应商编号:</span><span>{{ resitem.supplierNo }}</span>
  195. </li>
  196. </ul>
  197. <i slot="reference" class="el-icon-warning-outline fr" />
  198. </el-popover>
  199. </template>
  200. <template slot="returnWsm">
  201. <span>{{ resitem.wsm_name }}</span>
  202. <el-popover placement="top" width="400" trigger="hover">
  203. <ul>
  204. <li><h3>退货仓库</h3></li>
  205. <li>
  206. <span>编码:</span><span>{{ resitem.wsm_code }}</span>
  207. </li>
  208. <li>
  209. <span>名称:</span><span>{{ resitem.wsm_name }}</span>
  210. </li>
  211. <li>
  212. <span>所在供应商编码:</span><span>{{ resitem.wsm_supplierNo }}</span>
  213. </li>
  214. <li>
  215. <span>所在供应商名称:</span><span>{{ resitem.wsm_supplier }}</span>
  216. </li>
  217. </ul>
  218. <i slot="reference" class="el-icon-warning-outline fr" />
  219. </el-popover>
  220. </template>
  221. <template slot="status">
  222. <el-tag
  223. :size="'mini'"
  224. :type="resitem.status == '0' ? 'warning' : ''"
  225. v-text="
  226. (
  227. status1Options.find(
  228. (item) => String(item.id) === String( resitem.status)
  229. ) || {}
  230. ).label || '--'
  231. "
  232. ></el-tag>
  233. <el-tooltip
  234. class="fr"
  235. effect="dark"
  236. content="取消申请"
  237. style="padding: 3px 0 0 0"
  238. v-if="
  239. !afterStatusList.includes(Number(resitem.status)) &&
  240. powers.some((i) => i == '027') && !isSupertube
  241. "
  242. placement="top"
  243. >
  244. <i class="el-icon-circle-close tb-icon" @click="() => close_return(scope.row.returnCode)"></i>
  245. </el-tooltip>
  246. </template>
  247. <template slot="is_stock">
  248. <el-tag
  249. :size="'mini'"
  250. :type="sitem.status == '0' ? 'warning' : ''"
  251. v-text="
  252. ((stockOptions).find(
  253. (item) => String(item.id) === String( resitem.is_stock)
  254. ) || {}
  255. ).name || '--'
  256. "
  257. ></el-tag>
  258. </template>
  259. <template slot="order_type">
  260. <el-tag
  261. :size="'mini'"
  262. v-text="
  263. (
  264. xs_order_type_options.find(
  265. (item) => item.id == resitem.order_type
  266. ) || {}
  267. ).label || '--'
  268. "
  269. ></el-tag>
  270. </template>
  271. <template slot="order_source">
  272. <el-tag
  273. :size="'mini'"
  274. v-text="
  275. (
  276. xs_order_source_options.find(
  277. (item) => item.id == resitem.order_source
  278. ) || {}
  279. ).label || '--'
  280. "
  281. ></el-tag>
  282. </template>
  283. <template slot="is_receive">
  284. <el-tag :size="'mini'" :type="''">{{
  285. resitem.is_receive + '' === "1"
  286. ? "销售订单退货,采购订单也退货"
  287. : resitem.is_receive + '' === "0"
  288. ? "采购订单不退货(货物已丢失,且无法找回,由业务公司承担)"
  289. : "--"
  290. }}</el-tag>
  291. </template>
  292. <template slot="except_code">
  293. <el-tag
  294. :size="'mini'"
  295. v-text="
  296. (
  297. expect_options.find((item) => item.value == resitem.except_code) ||
  298. {}
  299. ).label || '--'
  300. "
  301. ></el-tag>
  302. </template>
  303. <template slot="error_img">
  304. <img
  305. class="fl hover"
  306. style="width: 23px; height: 23px; margin: 0 5px 0 0"
  307. v-viewer
  308. v-for="(si, i) in sitem.error_img"
  309. :src="si"
  310. :key="si + i"
  311. />
  312. </template>
  313. </show-data-table>
  314. <show-data-table
  315. :newTime="newTime"
  316. v-if="
  317. resitem &&
  318. resitem.is_receive + '' === '1' &&
  319. (returnCode_type + '' === '4' || returnCode_type + '' === '5')
  320. "
  321. :sitem="resitem"
  322. border
  323. :columns="returnShowColumns"
  324. >
  325. <template slot="is_th">
  326. <el-tag
  327. :size="'mini'"
  328. v-text="
  329. (is_th_options.find((item) => item.value + '' == resitem.is_th + '') || {})
  330. .label || '--'
  331. "
  332. ></el-tag>
  333. </template>
  334. <template slot="addr">
  335. <span
  336. >{{ resitem.contactor }}---{{ resitem.mobile }}---{{ resitem.addr_cn
  337. }}{{ resitem.addr }}</span
  338. >
  339. </template>
  340. </show-data-table>
  341. <show-data-table
  342. :newTime="newTime"
  343. v-if="
  344. newTime !== '' &&
  345. resitem &&
  346. resitem.is_receive + '' === '1' &&
  347. returnCode_type + '' === '5'
  348. "
  349. :sitem="resitem"
  350. border
  351. :columns="returnShowResColumns"
  352. >
  353. </show-data-table>
  354. <return-express
  355. :sitem="resitem"
  356. :newTime="newTime"
  357. v-if="newTime !== '' && returnCode_type + '' === '4'"
  358. @refresh="initData"
  359. />
  360. </el-collapse-item>
  361. </el-collapse>
  362. </el-tab-pane>
  363. <el-tab-pane label="审批记录" name="2">
  364. <process-time-line
  365. v-if="newTime !== ''"
  366. :newTime="newTime"
  367. :type="'CKD'"
  368. :orderCode="queryId"
  369. />
  370. </el-tab-pane>
  371. <el-tab-pane
  372. label="物流进度"
  373. name="3"
  374. v-if="newTime !== '' && (status + '' === '2' || status + '' === '3')"
  375. >
  376. <logis-time-line v-if="newTime !== ''" :orderCode="sitem.post_code" />
  377. </el-tab-pane>
  378. <el-tab-pane label="流程图" name="4" v-if="queryType !== 'add'">
  379. <flow-chart process_id="5" type="CKD" :orderCode="queryId" />
  380. </el-tab-pane>
  381. </el-tabs>
  382. <div>
  383. <add-Edit-A
  384. :id="'add'"
  385. :sitem="sitem"
  386. :show-model="showModel"
  387. :is-detail="false"
  388. @refresh="initData"
  389. @cancel="showModel = false"
  390. />
  391. </div>
  392. </div>
  393. <div v-else>
  394. <no-auth></no-auth>
  395. </div>
  396. </div>
  397. </template>
  398. <script>
  399. import mixinPage from "@/mixins/elPaginationHandle";
  400. import resToken from "@/mixins/resToken";
  401. import asyncRequest from "@/apis/service/sellOut/sellOutOrder";
  402. import { showColumns } from "./columns";
  403. import { sellshowColumns } from "@/views/sellOut/sellAfterApply/columns";
  404. import { xs_order_type_options, xs_order_source_options } from "@/assets/js/statusList";
  405. import { mapGetters } from "vuex";
  406. import { shareWebUrl } from "@/config";
  407. import returnExpress from "./components/returnExpress";
  408. import wantDeliver from "./components/want-deliver";
  409. import addEditForm from "./components/addEditForm"; //发货单详情
  410. import addEditA from "./components/addEditA";
  411. import privateField from "@/mixins/privateField";
  412. import ChildList from "./components/child-list.vue"
  413. export default {
  414. name: "sellOutOrderDetail",
  415. mixins: [mixinPage, resToken, privateField],
  416. components: {
  417. addEditForm,
  418. addEditA,
  419. wantDeliver,
  420. returnExpress,
  421. ChildList
  422. },
  423. computed: {
  424. ...mapGetters(["private_field", "isSupertube"]),
  425. powers() {
  426. const tran =
  427. this.$store.getters.btnList.find(
  428. (item) => item.menu_route == "sellOutOrderDetail"
  429. ) || {};
  430. const { action } = tran ?? {};
  431. return action ?? [];
  432. },
  433. ppowers() {
  434. const tran =
  435. this.$store.getters.roleProcess.find((i) => i.process_type === "CKD") || {};
  436. const { action } = tran ?? {};
  437. return action ?? [];
  438. },
  439. },
  440. data() {
  441. return {
  442. stockOptions:[
  443. { id: "0", name: "非库存品" },
  444. { id: "1", name: "库存品" },
  445. ],
  446. xs_order_type_options,
  447. xs_order_source_options,
  448. returnCode: "",
  449. returnCode_type: "",
  450. activeTabs: "1",
  451. activeNames: ["0", "1", "2", "3", "4"],
  452. status: "", //存储详情接口状态
  453. statusList: [],
  454. showColumns: showColumns,
  455. rshowColumns: sellshowColumns,
  456. returnShowColumns: [
  457. // {
  458. // prop: "is_th",
  459. // label: "物流承担方",
  460. // _slot_: "is_th",
  461. // span: 6,
  462. // },
  463. // {
  464. // prop: "addr",
  465. // label: "收货地址",
  466. // _slot_: "addr",
  467. // span: 18,
  468. // },
  469. ],
  470. returnShowResColumns: [
  471. // {
  472. // prop: "post_fee",
  473. // label: "退货物流费用",
  474. // span: 6,
  475. // },
  476. // {
  477. // prop: "post_company",
  478. // label: "退货物流公司",
  479. // span: 6,
  480. // },
  481. // {
  482. // prop: "post_code",
  483. // label: "退货物流单号",
  484. // span: 12,
  485. // },
  486. ],
  487. sitem: null,
  488. resitem: null,
  489. newTime: "",
  490. showModel: false,
  491. loading: false,
  492. afterStatusList:[5,6,8,11,12],
  493. orderOptions: [
  494. { id: "1", label: "线上商品销售" },
  495. { id: "2", label: "项目线上商品销售" },
  496. { id: "3", label: "竞价单销售" },
  497. { id: "4", label: "项目竞价单销售" },
  498. { id: "5", label: "平台部订单销售" },
  499. ],
  500. statusOptions: [
  501. { value: "0", label: "待采购备货" },
  502. { value: "1", label: "待库管发货" },
  503. { value: "2", label: "已发货待收货" },
  504. { value: "3", label: "已收货" },
  505. { value: "4", label: "已全部退货" },
  506. ],
  507. // 收到货状态
  508. status1Options: [
  509. { id: "1", label: "待业务审核" },
  510. { id: "2", label: "待采购审核" },
  511. { id: "3", label: "待设置仓库" },
  512. { id: "4", label: "待客户退货" },
  513. { id: "5", label: "售后已完成" },
  514. { id: "6", label: "业务已驳回" },
  515. { id: "7", label: "采购已驳回" },
  516. { id: "8", label: "申请已取消" },
  517. ],
  518. // 未收到货状态
  519. status2Options: [
  520. { id: "1", label: "待业务审核" },
  521. { id: "2", label: "待采购审核" },
  522. { id: "3", label: "待同意退货" },
  523. { id: "5", label: "售后已完成" },
  524. { id: "6", label: "业务已驳回" },
  525. { id: "7", label: "采购已驳回" },
  526. { id: "8", label: "申请已取消" },
  527. ],
  528. expect_options: [],
  529. expect_options1: [
  530. {
  531. value: "1",
  532. label: "退货",
  533. },
  534. {
  535. value: "2",
  536. label: "换货",
  537. },
  538. ],
  539. expect_options0: [
  540. {
  541. value: "1",
  542. label: "退货",
  543. },
  544. {
  545. value: "2",
  546. label: "补发",
  547. },
  548. ],
  549. is_th_options: [
  550. {
  551. value: "1",
  552. label: "收货人承担",
  553. },
  554. {
  555. value: "2",
  556. label: "业务公司承担",
  557. },
  558. {
  559. value: "3",
  560. label: "供应商承担",
  561. },
  562. ],
  563. queryId: "",
  564. did: "", //详情页上的id
  565. };
  566. },
  567. mounted() {
  568. this.queryId = this.$route.query.id;
  569. this.initData();
  570. },
  571. methods: {
  572. handleShare() {
  573. const url = shareWebUrl + this.sitem.outCode;
  574. const input = document.createElement("input");
  575. document.body.appendChild(input);
  576. input.value = url;
  577. input.select();
  578. document.execCommand("Copy");
  579. this.$message.success("复制成功");
  580. document.body.removeChild(input);
  581. },
  582. async updateStatus(e) {
  583. await this.setstatus(e.status);
  584. },
  585. getNewTime() {
  586. this.newTime = new Date().valueOf();
  587. },
  588. async setstatus(status) {
  589. const model = {
  590. id: this.did,
  591. status: status,
  592. };
  593. let res = await asyncRequest.status(model);
  594. if (res && res.code === 0) {
  595. this.$notify.success({
  596. title: "修改成功!",
  597. message: "",
  598. });
  599. await this.initData();
  600. } else if (res && res.code >= 100 && res.code <= 104) {
  601. await this.logout();
  602. } else {
  603. this.$message.warning(res.message);
  604. }
  605. },
  606. async reissue() {
  607. const { is_receive } = this.resitem;
  608. await this.$confirm(`确定要${is_receive + '' === "1" ? "换货" : "补发"}?`, {
  609. confirmButtonText: "确定",
  610. cancelButtonText: "取消",
  611. type: "warning",
  612. })
  613. .then(async () => {
  614. const model = {
  615. returnCode: this.returnCode,
  616. };
  617. const res = await asyncRequest.createSaleAndCgdByAfter(model);
  618. if (res && res.code === 0) {
  619. this.$notify.success({
  620. title: `${is_receive + '' === "1" ? "换货" : "补发"}成功!`,
  621. message: "",
  622. });
  623. await this.initData();
  624. } else if (res && res.code >= 100 && res.code <= 104) {
  625. await this.logout();
  626. } else {
  627. this.$message.warning(res.message);
  628. }
  629. })
  630. .catch(() => {
  631. console.log("取消");
  632. });
  633. },
  634. async wentReceive() {
  635. await this.$confirm("确定要确认收货?", {
  636. confirmButtonText: "确定",
  637. cancelButtonText: "取消",
  638. type: "warning",
  639. })
  640. .then(async () => {
  641. const model = {
  642. outCode: this.sitem.outCode,
  643. };
  644. const res = await asyncRequest.saleoutreceipt(model);
  645. if (res && res.code === 0) {
  646. this.$notify.success({
  647. title: "确认收货",
  648. message: "",
  649. });
  650. await this.initData();
  651. } else if (res && res.code >= 100 && res.code <= 104) {
  652. await this.logout();
  653. } else {
  654. this.$message.warning(res.message);
  655. }
  656. })
  657. .catch(() => {
  658. console.log("取消");
  659. });
  660. },
  661. async initData(e) {
  662. this.returnCode = "";
  663. this.returnCode_type = "";
  664. let model = {
  665. outCode: this.queryId,
  666. };
  667. const res = await asyncRequest.detail(model);
  668. if (res && res.code === 0 && res.data) {
  669. this.sitem = res.data;
  670. const { status, can, id, order_return } = this.sitem;
  671. this.status = status;
  672. this.did = id;
  673. if (order_return) {
  674. this.returnCode = order_return.returnCode;
  675. this.returnCode_type = order_return.status;
  676. await this.receive_initData(this.returnCode);
  677. }
  678. this.getNewTime();
  679. } else if (res && res.code >= 100 && res.code <= 104) {
  680. await this.logout();
  681. } else {
  682. this.$message.warning(res.message);
  683. }
  684. },
  685. wellReturnCode() {
  686. if (
  687. this.returnCode_type + '' === "1" ||
  688. this.returnCode_type + '' === "2" ||
  689. this.returnCode_type + '' === "3"
  690. ) {
  691. this.$message.warning("当前售后申请单未完成审批!");
  692. return;
  693. }
  694. this.showModel = true;
  695. },
  696. async receive_initData(code) {
  697. let model = {
  698. returnCode: code,
  699. };
  700. const res = await asyncRequest.afterinfo(model);
  701. if (res && res.code === 0 && res.data) {
  702. this.resitem = res.data;
  703. this.resitem.error_img = this.resitem.error_img.split(",");
  704. this.expect_options = JSON.parse(
  705. JSON.stringify(
  706. this.resitem.is_receive + '' === "1" ? this.expect_options1 : this.expect_options0
  707. )
  708. );
  709. } else if (res && res.code >= 100 && res.code <= 104) {
  710. await this.logout();
  711. } else {
  712. this.$message.warning(res.message);
  713. }
  714. },
  715. async agree_return() {
  716. await this.$confirm("确定要同意退货?", {
  717. confirmButtonText: "确定",
  718. cancelButtonText: "取消",
  719. type: "warning",
  720. })
  721. .then(async () => {
  722. const model = {
  723. returnCode: this.returnCode,
  724. status: "5",
  725. remark: "",
  726. is_post: "",
  727. };
  728. const res = await asyncRequest.afterstatus(model);
  729. if (res && res.code === 0) {
  730. this.$notify.success({
  731. title: "退货成功",
  732. message: "",
  733. });
  734. await this.initData();
  735. } else if (res && res.code >= 100 && res.code <= 104) {
  736. await this.logout();
  737. } else {
  738. this.$message.warning(res.message);
  739. }
  740. })
  741. .catch(() => {
  742. console.log("取消");
  743. });
  744. },
  745. async close_return() {
  746. await this.$confirm("确定要取消申请?", {
  747. confirmButtonText: "确定",
  748. cancelButtonText: "取消",
  749. type: "warning",
  750. })
  751. .then(async () => {
  752. const model = {
  753. returnCode: this.returnCode,
  754. };
  755. const res = await asyncRequest.aftercancel(model);
  756. if (res && res.code === 0) {
  757. this.$notify.success({
  758. title: "取消成功",
  759. message: "",
  760. });
  761. await this.initData();
  762. } else if (res && res.code >= 100 && res.code <= 104) {
  763. await this.logout();
  764. } else {
  765. this.$message.warning(res.message);
  766. }
  767. })
  768. .catch(() => {
  769. console.log("取消");
  770. });
  771. },
  772. },
  773. };
  774. </script>