index.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  1. <template>
  2. <div class="goodsCost pagePadding">
  3. <ex-table
  4. v-loading="loading"
  5. v-if="powers.some((i) => i == '001')"
  6. :table="table"
  7. :data="tableData"
  8. :columns="columns"
  9. :page="pageInfo"
  10. :size="size"
  11. @page-curr-change="handlePageChange"
  12. @page-size-change="handleSizeChange"
  13. @screen-reset="
  14. pageInfo.curr = 1;
  15. parmValue.page = 1;
  16. searchList();
  17. "
  18. @screen-submit="
  19. pageInfo.curr = 1;
  20. parmValue.page = 1;
  21. searchList();
  22. "
  23. @selection="selection_change"
  24. >
  25. <template #table-header="{}">
  26. <div style="width: 100%">
  27. <el-row style="padding: 0 0 10px 80px">
  28. <el-col :span="6" style="width: 301px">
  29. <period-date-picker
  30. :type="1"
  31. :width="'135px'"
  32. :size="searchSize"
  33. :start="parmValue.start"
  34. :end="parmValue.end"
  35. @timeReturned="handleTime"
  36. />
  37. </el-col>
  38. <el-col :span="6" style="width: 310px">
  39. <good-class
  40. :value="parmValue.cat_id"
  41. @handleChange="goods_class_change"
  42. :disabled="false"
  43. :size="searchSize"
  44. :isDetail="false"
  45. :placeholder="'分类'"
  46. />
  47. </el-col>
  48. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  49. <el-button type="primary" :size="searchSize" @click="searchList">刷新</el-button>
  50. </el-col>
  51. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  52. <el-button type="warning" :size="searchSize" @click="restSearch">重置</el-button>
  53. </el-col>
  54. </el-row>
  55. <el-row>
  56. <el-col :span="4" style="width: 226px">
  57. <el-select
  58. v-model="parmValue.status"
  59. filterable
  60. clearable
  61. :size="searchSize"
  62. placeholder="状态"
  63. style="width: 100%"
  64. @change="
  65. pageInfo.curr = 1;
  66. parmValue.page = 1;
  67. searchList();
  68. "
  69. >
  70. <el-option
  71. v-for="item in statusList"
  72. :key="'status' + item.code"
  73. :label="item.name"
  74. :value="item.code"
  75. />
  76. </el-select>
  77. </el-col>
  78. <el-col :span="4" style="width: 145px; padding: 0 0 0 10px">
  79. <el-select
  80. v-model="parmValue.isonline"
  81. filterable
  82. clearable
  83. :size="searchSize"
  84. placeholder="是否上线"
  85. style="width: 100%"
  86. @change="
  87. pageInfo.curr = 1;
  88. parmValue.page = 1;
  89. searchList();
  90. "
  91. >
  92. <el-option
  93. v-for="item in isonlineoptions"
  94. :key="'isonline' + item.id"
  95. :label="item.name"
  96. :value="item.id"
  97. />
  98. </el-select>
  99. </el-col>
  100. <el-col :span="4" style="width: 320px; padding: 0 0 0 10px">
  101. <search-work-company
  102. :value="parmValue.companyNo"
  103. :placeholder="'业务公司'"
  104. :size="searchSize"
  105. @searchChange="companyNosearchChange"
  106. />
  107. </el-col>
  108. <el-col
  109. :span="3"
  110. class="fr"
  111. style="width: 66px; padding: 0 0 0 10px"
  112. v-if="powers.some((i) => i == '003')"
  113. >
  114. <el-button
  115. :size="searchSize"
  116. type="success"
  117. style="float: right"
  118. @click="handleCreate"
  119. >添加</el-button>
  120. </el-col>
  121. <!-- <el-col
  122. :span="3"
  123. class="fr"
  124. style="width: 110px; padding: 0 0 0 10px"
  125. v-if="powers.some((i) => i == '055')"
  126. >
  127. <el-button
  128. :size="searchSize"
  129. type="warning"
  130. style="float: right"
  131. @click="add_online"
  132. >
  133. <i class="el-icon-circle-plus-outline"></i>
  134. <span>商品上线</span>
  135. </el-button>
  136. </el-col>-->
  137. </el-row>
  138. <el-row style="margin-top: 10px">
  139. <el-col :span="4" style="width: 225px">
  140. <search-brand
  141. :value="brandid"
  142. :disabled="false"
  143. :size="'mini'"
  144. :isDetail="true"
  145. :names="parmValue.supplierName"
  146. :placeholder="'商品品牌'"
  147. @searchChange="brandidsearchChange"
  148. />
  149. </el-col>
  150. <el-col :span="4" style="width: 145px; padding: 0 0 0 10px">
  151. <el-select
  152. v-model="parmValue.is_stock"
  153. size="mini"
  154. style="width: 100%"
  155. placeholder="商品类型"
  156. clearable
  157. @change="
  158. pageInfo.curr = 1;
  159. parmValue.page = 1;
  160. searchList();
  161. "
  162. >
  163. <el-option
  164. v-for="opt in isStockOptions"
  165. :key="opt.value"
  166. :value="opt.value"
  167. :label="opt.label"
  168. />
  169. </el-select>
  170. </el-col>
  171. <el-col :span="4" style="width: 420px; padding: 0 0 0 10px">
  172. <el-input
  173. :size="searchSize"
  174. v-model="sinput"
  175. :maxlength="40"
  176. @blur="
  177. pageInfo.curr = 1;
  178. parmValue.page = 1;
  179. searchList();
  180. "
  181. placeholder="关键字"
  182. >
  183. <el-select
  184. v-model="select"
  185. slot="prepend"
  186. style="width: 135px"
  187. @change="
  188. pageInfo.curr = 1;
  189. parmValue.page = 1;
  190. searchList();
  191. "
  192. placeholder="关键字类型"
  193. >
  194. <el-option label="商品编号" value="1" />
  195. <el-option label="商品名称" value="2" />
  196. <!-- <el-option label="业务企业编号" value="3" /> -->
  197. <!-- <el-option label="供应商编号" value="4" /> -->
  198. <!-- <el-option label="创建人部门" value="5" /> -->
  199. </el-select>
  200. </el-input>
  201. </el-col>
  202. </el-row>
  203. </div>
  204. </template>
  205. <template #create_source="{ scope }">
  206. <el-tag size="mini" :type="scope.row.create_source === '1' ? 'warning' : ''">
  207. {{ scope.row.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
  208. </el-tag>
  209. </template>
  210. <template #is_combind="{ scope }">
  211. <el-tag
  212. size="mini"
  213. :type="scope.row.is_combind === '1' ? '' : 'warning'"
  214. >{{scope.row.is_combind === '1' ? '组合商品' : '非组合商品'}}</el-tag>
  215. </template>
  216. <template #good_thumb_img="{ scope }">
  217. <div
  218. v-if="scope.row.good_thumb_img"
  219. style="width: 20px; height: 20px"
  220. class="hover"
  221. v-viewer
  222. >
  223. <img
  224. :src="scope.row.good_thumb_img"
  225. style="display: inline-block; width: 100%; height: 100%"
  226. alt
  227. />
  228. </div>
  229. </template>
  230. <template #status="{ scope }">
  231. <el-tag
  232. :size="tablebtnSize"
  233. :type="
  234. (statusList.find((item) => item.code == scope.row.status) || {}).type || '--'
  235. "
  236. v-text="
  237. (statusList.find((item) => item.code == scope.row.status) || {}).name || '--'
  238. "
  239. ></el-tag>
  240. </template>
  241. <template #isonline="{ scope }">
  242. <el-tag
  243. :size="tablebtnSize"
  244. :type="scope.row.is_online == '0' ? 'warning' : ''"
  245. v-text="
  246. (isonlineoptions.find((item) => item.id == scope.row.is_online) || {}).name ||
  247. '--'
  248. "
  249. ></el-tag>
  250. </template>
  251. <template #is_stock="{ scope }">
  252. <el-tag
  253. :size="tablebtnSize"
  254. :type="scope.row.is_stock == '0' ? 'warning' : ''"
  255. v-text="
  256. (options4.find((item) => item.id == scope.row.is_stock) || {}).name || '--'
  257. "
  258. ></el-tag>
  259. </template>
  260. <template #operation="{ scope }">
  261. <el-tooltip
  262. v-if="powers.some((i) => i == '007') && scope.row.status !== '8'"
  263. effect="dark"
  264. content="详情"
  265. placement="top"
  266. >
  267. <i
  268. class="el-icon-view tb-icon"
  269. @click="getRouter('supplierGoodsCostDetail', scope.row.spuCode)"
  270. ></i>
  271. </el-tooltip>
  272. <!-- <el-tooltip
  273. v-if="powers.some((i) => i == '079') && scope.row.status !== '8'"
  274. effect="dark"
  275. content="下线商品"
  276. placement="top"
  277. >
  278. <i
  279. class="el-icon-download tb-icon"
  280. @click="showDonlineDlg(scope.row.spuCode)"
  281. ></i>
  282. </el-tooltip>-->
  283. <!-- (scope.row.is_stock + '' === '0') -->
  284. <el-tooltip
  285. v-if="
  286. (ppowers.some((i) => i == '7') && scope.row.status + '' === '7') ||
  287. (ppowers.some((i) => i == '6') && scope.row.status + '' === '6') ||
  288. (ppowers.some((i) => i == '8') && scope.row.status + '' === '8')
  289. "
  290. effect="dark"
  291. content="修改"
  292. placement="top"
  293. >
  294. <i
  295. class="el-icon-edit tb-icon"
  296. @click="
  297. routeGoto('supplierGoodsCostDetail', {
  298. id: scope.row.spuCode,
  299. type: 'edit',
  300. })
  301. "
  302. ></i>
  303. </el-tooltip>
  304. <el-tooltip
  305. v-if="
  306. ppowers.some((i) => i == '4') &&
  307. (scope.row.status + '' === '4' || scope.row.status + '' === '1')
  308. "
  309. effect="dark"
  310. content="修改基础信息"
  311. placement="top"
  312. >
  313. <i
  314. class="el-icon-c-scale-to-original tb-icon"
  315. @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2')"
  316. ></i>
  317. </el-tooltip>
  318. <el-tooltip
  319. v-if="
  320. ppowers.some((i) => i == '5') &&
  321. (scope.row.status + '' === '5' || scope.row.status + '' === '1')
  322. "
  323. effect="dark"
  324. content="修改成本信息"
  325. placement="top"
  326. >
  327. <i
  328. class="el-icon-coin tb-icon"
  329. @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3')"
  330. ></i>
  331. </el-tooltip>
  332. <el-tooltip
  333. v-if="
  334. powers.some((i) => i == '010') &&
  335. !(scope.row.status + '' === '7' || scope.row.status + '' === '8') &&
  336. String(scope.row.createrid) !== '0'
  337. "
  338. effect="dark"
  339. content="复制商品"
  340. placement="top"
  341. >
  342. <i class="el-icon-document-copy tb-icon" @click="good_copy(scope.row.spuCode)"></i>
  343. </el-tooltip>
  344. </template>
  345. </ex-table>
  346. <no-auth v-else></no-auth>
  347. <el-dialog title="下线原因" :visible.sync="dialogFormVisible" width="500px">
  348. <el-form
  349. :model="donline_form"
  350. :rules="donline_rules"
  351. ref="donline_Form"
  352. class="demo-ruleForm"
  353. label-width="80px"
  354. >
  355. <el-form-item label="下线原因" prop="offline_reason">
  356. <el-select
  357. style="width: 100%"
  358. v-model="donline_form.offline_reason"
  359. placeholder="请选择下线原因"
  360. >
  361. <el-option
  362. :label="item.result"
  363. :value="item.result_code"
  364. v-for="item in donline_formStOps"
  365. :key="item.result_code"
  366. ></el-option>
  367. </el-select>
  368. </el-form-item>
  369. <el-form-item label="下线备注" prop="offline_remark">
  370. <el-input
  371. v-model="donline_form.offline_remark"
  372. type="textarea"
  373. placeholder="请输入下线备注"
  374. autocomplete="off"
  375. ></el-input>
  376. </el-form-item>
  377. </el-form>
  378. <div slot="footer" class="dialog-footer">
  379. <el-button @click="dialogFormVisible = false">取 消</el-button>
  380. <el-button type="primary" @click="donlineDlg">确 定</el-button>
  381. </div>
  382. </el-dialog>
  383. <add-edit
  384. :id="''"
  385. :sitem="changeList"
  386. :show-model="showModel"
  387. :is-detail="false"
  388. @refresh="showModel = false"
  389. @cancel="showModel = false"
  390. />
  391. </div>
  392. </template>
  393. <script>
  394. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  395. import mixinPage from "@/mixins/elPaginationHandle";
  396. import { listCol, options1, options4 } from "./columns";
  397. import { isStockOptions } from "@/assets/js/statusList";
  398. import companyHelper from "@/mixins/companyHelper";
  399. import addEdit from "./components/addEdit";
  400. import resToken from "@/mixins/resToken";
  401. import { mapGetters } from "vuex";
  402. export default {
  403. name: "goodsCost",
  404. mixins: [mixinPage, resToken, companyHelper],
  405. components: {
  406. addEdit
  407. },
  408. computed: {
  409. //组件SIZE设置
  410. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  411. powers() {
  412. const tran =
  413. this.$store.getters.btnList.find(
  414. i => i.menu_route == "supplierGoodsCost"
  415. ) || {};
  416. const { action } = tran ?? {};
  417. return action ?? [];
  418. },
  419. ppowers() {
  420. const tran =
  421. this.$store.getters.roleProcess.find(i => i.process_type === "SPCB") ||
  422. {};
  423. const { action } = tran ?? {};
  424. console.log(action);
  425. return action ?? [];
  426. }
  427. },
  428. data() {
  429. var validate = (rule, value, callback) => {
  430. if (value == "") {
  431. return callback(new Error("必填项不能为空"));
  432. } else {
  433. callback();
  434. }
  435. };
  436. return {
  437. isStockOptions,
  438. dialogFormVisible: false,
  439. donline_formStOps: [],
  440. donline_form: {
  441. offline_reason: "",
  442. offline_remark: "",
  443. spuCode: ""
  444. },
  445. donline_rules: {
  446. offline_reason: [
  447. { validator: validate, required: true, trigger: "blur" }
  448. ],
  449. offline_remark: [
  450. { validator: validate, required: true, trigger: "blur" }
  451. ]
  452. },
  453. statusList: [
  454. {
  455. code: "0",
  456. name: "新建待审核",
  457. type: ""
  458. },
  459. {
  460. code: "1",
  461. name: "审核通过",
  462. type: "success"
  463. },
  464. {
  465. code: "2",
  466. name: "基础修改待审核",
  467. type: ""
  468. },
  469. {
  470. code: "3",
  471. name: "成本修改待审核",
  472. type: ""
  473. },
  474. {
  475. code: "4",
  476. name: "基础修改驳回",
  477. type: "danger"
  478. },
  479. {
  480. code: "5",
  481. name: "成本修改驳回",
  482. type: "danger"
  483. },
  484. {
  485. code: "6",
  486. name: "新建审核驳回",
  487. type: "danger"
  488. },
  489. {
  490. code: "7",
  491. name: "复制商品待编辑",
  492. type: "info"
  493. },
  494. {
  495. code: "8",
  496. name: "竞价商品待编辑",
  497. type: "info"
  498. }
  499. ],
  500. isonlineoptions: [
  501. { id: "0", name: "未上线" },
  502. { id: "1", name: "已上线" }
  503. ],
  504. showModel: false,
  505. options1,
  506. options4,
  507. loading: false,
  508. changeList: [],
  509. parmValue: {
  510. page: 1, // 页码
  511. size: 15, // 每页显示条数
  512. start: "",
  513. end: "",
  514. status: "",
  515. good_name: "",
  516. spucode: "",
  517. cat_id: [],
  518. brandid: "",
  519. good_type: "",
  520. companyNo: "",
  521. supplierNo: "",
  522. isonline: "",
  523. company_name: "", //创建人部门
  524. is_stock: ""
  525. // creater: "",
  526. },
  527. sinput: "",
  528. select: "",
  529. // 表格 - 数据
  530. tableData: [],
  531. // 表格 - 参数
  532. table: {
  533. stripe: true,
  534. border: true,
  535. _defaultHeader_: ["setcol"]
  536. },
  537. // 表格 - 分页
  538. pageInfo: {
  539. size: 15,
  540. curr: 1,
  541. total: 0
  542. },
  543. // 表格 - 列参数
  544. columns: listCol,
  545. supplierNo: [],
  546. brandid: []
  547. };
  548. },
  549. mounted() {
  550. const { back } = this.$route.query;
  551. if (back) {
  552. this.parmValue = JSON.parse(back);
  553. const { page, size } = this.parmValue;
  554. // this.parmValue.start = start || last_start;
  555. // this.parmValue.end = end || last_end;
  556. if (this.parmValue.brandid.length > 0) {
  557. this.brandid = [this.parmValue.brandid];
  558. }
  559. this.pageInfo = {
  560. size: size,
  561. curr: page,
  562. total: 0
  563. };
  564. //多选条件
  565. this.select = this.parmValue.select;
  566. // this.sselect = this.parmValue.sselect;
  567. this.sinput = this.parmValue.sinput;
  568. } else {
  569. this.select = "2";
  570. // this.sselect = "创建时间"
  571. }
  572. this.select = "2";
  573. this.supplierNo = [];
  574. this.searchList();
  575. },
  576. methods: {
  577. companyNosearchChange({ code }) {
  578. this.parmValue.companyNo = code;
  579. this.searchList();
  580. },
  581. handleCreate() {
  582. // if(!this.currentIsBusinessCompany()) return
  583. this.routeGoto("supplierGoodsCostDetail", { id: "add", type: "add" });
  584. },
  585. // 获取异常原因下拉列表
  586. async getresultlist() {
  587. const res = await asyncRequest.resultlist({
  588. page: 1,
  589. size: 100,
  590. type: "8",
  591. status: "3"
  592. });
  593. if (res && res.code === 0 && res.data) {
  594. const { list } = res.data;
  595. this.donline_formStOps = list;
  596. } else if (res && res.code >= 100 && res.code <= 104) {
  597. await this.logout();
  598. } else {
  599. this.$message.warning(res.message);
  600. }
  601. },
  602. getRouter(toRouter, queryId) {
  603. if (toRouter && queryId) {
  604. let model = {
  605. id: queryId,
  606. type: "view"
  607. };
  608. //有多选框的条件
  609. this.parmValue.select = this.select;
  610. // this.parmValue.sselect = this.sselect ;
  611. this.parmValue.sinput = this.sinput;
  612. //
  613. console.log(this.parmValue);
  614. let routerModel = {
  615. options: JSON.parse(JSON.stringify(this.parmValue)),
  616. router: this.$route.path
  617. };
  618. model.preModel = JSON.stringify(routerModel);
  619. this.routeGoto(toRouter, model);
  620. } else {
  621. this.$message.warning("暂未找到相关流程!");
  622. }
  623. },
  624. restSearch() {
  625. this.select = "2";
  626. this.sinput = "";
  627. this.supplierNo = [];
  628. this.brandid = [];
  629. // 表格 - 分页
  630. this.pageInfo = {
  631. size: 15,
  632. curr: 1,
  633. total: 0
  634. };
  635. this.parmValue = {
  636. page: 1, // 页码
  637. size: 15, // 每页显示条数
  638. start: "",
  639. end: "",
  640. status: "",
  641. good_name: "",
  642. company_name: "", //创建人部门
  643. spucode: "",
  644. cat_id: [],
  645. brandid: "",
  646. good_type: "",
  647. isonline: "",
  648. companyNo: "",
  649. supplierNo: "",
  650. is_stock: ""
  651. };
  652. this.searchList();
  653. },
  654. async wantto(isonline, spuCode, ntype, wtype) {
  655. const { code, data, message } = await asyncRequest.checkIsUpdate({
  656. spuCode
  657. });
  658. if (code === 0) {
  659. const { is_allow_update } = data;
  660. if (is_allow_update + "" === "1") {
  661. this.routeGoto("supplierGoodsCostDetail", {
  662. id: spuCode,
  663. type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : ""
  664. });
  665. } else {
  666. if (isonline + "" === "1") {
  667. this.$message.warning("已上线的商品需要下线才能修改!");
  668. } else {
  669. this.$message.warning("当前商品上线流程正在进行中,请下线再操作!");
  670. }
  671. }
  672. } else if (code >= 100 && code <= 104) {
  673. await this.logout();
  674. } else {
  675. this.$message.warning(message);
  676. }
  677. },
  678. selection_change(e) {
  679. const { list } = e;
  680. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  681. },
  682. //商品品牌选择
  683. async brandidsearchChange(e) {
  684. const { id, code, label } = e;
  685. if (id) {
  686. this.brandid = [id];
  687. this.parmValue.brandid = id;
  688. this.parmValue.supplierName = label;
  689. } else {
  690. this.brandid = [];
  691. this.parmValue.brandid = "";
  692. this.parmValue.supplierName = "";
  693. }
  694. // this.parmValue.brandid = this.brandid.toString();
  695. this.pageInfo.curr = 1;
  696. this.parmValue.page = 1;
  697. await this.searchList();
  698. },
  699. // 时间
  700. async handleTime(e) {
  701. this.parmValue.start = e.startTime || "";
  702. this.parmValue.end = e.endTime || "";
  703. if (
  704. (this.parmValue.start !== "" && this.parmValue.end !== "") ||
  705. (this.parmValue.start === "" && this.parmValue.end === "")
  706. ) {
  707. this.pageInfo.curr = 1;
  708. this.parmValue.page = 1;
  709. await this.searchList();
  710. }
  711. },
  712. async good_copy(spuCode) {
  713. await this.$confirm(`确定要复制该商品?`, {
  714. confirmButtonText: "确定",
  715. cancelButtonText: "取消",
  716. type: "warning"
  717. })
  718. .then(async () => {
  719. this.loading = true;
  720. const model = {
  721. spuCode: spuCode
  722. };
  723. const res = await asyncRequest.copy(model);
  724. if (res && res.code === 0) {
  725. this.loading = false;
  726. this.$notify.success({
  727. title: "复制商品成功!",
  728. message: ""
  729. });
  730. await this.searchList();
  731. } else if (res && res.code >= 100 && res.code <= 104) {
  732. await this.logout();
  733. } else {
  734. this.loading = false;
  735. this.$message.warning(res.message);
  736. }
  737. })
  738. .catch(() => {
  739. console.log("取消");
  740. });
  741. },
  742. /**
  743. * 启用/禁用
  744. * @param {String} id id
  745. * @param {String} status 0-禁用 1-启用
  746. */
  747. async changeStatus(id, status) {
  748. await this.$confirm(
  749. `确定要改为${status + "" === "1" ? "禁用" : "启用"}?`,
  750. {
  751. confirmButtonText: "确定",
  752. cancelButtonText: "取消",
  753. type: "warning"
  754. }
  755. )
  756. .then(async () => {
  757. this.loading = true;
  758. const model = {
  759. id: id,
  760. status: status + "" === "1" ? "0" : "1"
  761. };
  762. const res = await asyncRequest.status(model);
  763. if (res && res.code === 0) {
  764. this.loading = false;
  765. this.$notify.success({
  766. title: "状态修改成功!",
  767. message: ""
  768. });
  769. await this.searchList();
  770. } else if (res && res.code >= 100 && res.code <= 104) {
  771. await this.logout();
  772. } else {
  773. this.loading = false;
  774. this.$message.warning(res.message);
  775. }
  776. })
  777. .catch(() => {
  778. console.log("取消");
  779. });
  780. },
  781. async deleteItem(code) {
  782. await this.$confirm("确定要删除?", {
  783. confirmButtonText: "确定",
  784. cancelButtonText: "取消",
  785. type: "warning"
  786. })
  787. .then(async () => {
  788. const model = {
  789. codes: [code]
  790. };
  791. const res = await asyncRequest.delete(model);
  792. if (res && res.code === 0) {
  793. this.$notify.success({
  794. title: "删除成功",
  795. message: ""
  796. });
  797. this.searchList();
  798. } else if (res && res.code >= 100 && res.code <= 104) {
  799. await this.logout();
  800. } else {
  801. this.$message.warning(res.message);
  802. }
  803. })
  804. .catch(() => {
  805. console.log("取消");
  806. });
  807. },
  808. // 刷新表格
  809. async searchList() {
  810. if (
  811. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  812. (this.parmValue.start === "" && this.parmValue.end !== "")
  813. ) {
  814. this.$message.warning("时间区间不完整!");
  815. return;
  816. }
  817. this.loading = true;
  818. let item = JSON.parse(JSON.stringify(this.parmValue));
  819. item.spucode = this.select === "1" ? this.sinput : "";
  820. item.good_name = this.select === "2" ? this.sinput : "";
  821. // item.companyNo = this.select === "3" ? this.sinput : "";
  822. item.company_name = this.select === "5" ? this.sinput : ""; // 部门
  823. item.cat_id =
  824. item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
  825. // item.companyNo = this.currentCompany
  826. item.noRelation = true;
  827. const res = await asyncRequest.copy_list({
  828. ...item,
  829. noRelation: true,
  830. supplierNo: this.currentCompany
  831. });
  832. if (res && res.code === 0 && res.data) {
  833. this.tableData = res.data.list;
  834. this.tableData.forEach(a => {
  835. a.cat_name = "";
  836. let list = a.cat_info || [];
  837. list.forEach((b, i) => {
  838. a.cat_name += i == 0 ? b.name : "/" + b.name;
  839. });
  840. });
  841. this.pageInfo.total = Number(res.data.count);
  842. } else if (res && res.code >= 100 && res.code <= 104) {
  843. await this.logout();
  844. } else {
  845. this.tableData = [];
  846. this.pageInfo.total = 0;
  847. }
  848. this.getresultlist();
  849. this.loading = false;
  850. },
  851. //商品分类选择
  852. async goods_class_change(e) {
  853. this.parmValue.cat_id = e;
  854. this.pageInfo.curr = 1;
  855. this.parmValue.page = 1;
  856. await this.searchList();
  857. },
  858. add_online() {
  859. if (this.changeList.length === 0) {
  860. this.$message.warning("至少选择一个商品!");
  861. return;
  862. }
  863. if (this.changeList.length > 100) {
  864. this.$message.warning("商品数量不能超过100!");
  865. return;
  866. }
  867. let isok = true;
  868. this.changeList.forEach(e => {
  869. if (String(e.status) !== "1") {
  870. isok = false;
  871. }
  872. });
  873. if (!isok) {
  874. this.$message.warning("只有审核通过的商品可以上线!");
  875. return;
  876. }
  877. this.showModel = true;
  878. },
  879. //点击下线
  880. async showDonlineDlg(spuCode) {
  881. this.dialogFormVisible = true;
  882. this.donline_form = {
  883. offline_reason: "",
  884. offline_remark: "",
  885. skuCode: ""
  886. };
  887. this.donline_form.spuCode = spuCode;
  888. // this.donlineDlg(spuCode)
  889. },
  890. //商品下线原因 确定
  891. async donlineDlg() {
  892. await this.$refs.donline_Form.validate(async valid => {
  893. if (valid) {
  894. this.dialogFormVisible = false;
  895. this.get_donline(this.donline_form.spuCode);
  896. } else {
  897. console.log("error submit!!");
  898. return false;
  899. }
  900. });
  901. },
  902. async get_donline(spuCode) {
  903. await this.$confirm(`本次操作会下线本条SKU下的所有商品`, "提示", {
  904. // cancelButtonClass:"lzx_BtnErr",
  905. confirmButtonText: "确定",
  906. cancelButtonText: "取消",
  907. type: "warning",
  908. center: true
  909. })
  910. .then(async () => {
  911. this.loading = true;
  912. const model = this.donline_form;
  913. const res = await asyncRequest.goodupoffline(model);
  914. if (res && res.code === 0) {
  915. this.loading = false;
  916. this.$notify.success({
  917. title: res.message,
  918. message: ""
  919. });
  920. await this.searchList();
  921. } else if (res && res.code >= 100 && res.code <= 104) {
  922. await this.logout();
  923. } else {
  924. this.loading = false;
  925. this.$message.warning(res.message);
  926. }
  927. })
  928. .catch(async () => {
  929. console.log("取消");
  930. });
  931. }
  932. }
  933. };
  934. </script>
  935. <style lang="scss" scoped></style>