index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. <template>
  2. <div class="goodsCost pagePadding">
  3. <ex-table
  4. v-loading="loading"
  5. v-if="powers && powers.length > 0 && powers.some((item) => item == '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: 303px">
  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="4" style="width: 135px">
  39. <search-brand
  40. :value="brandid"
  41. :disabled="false"
  42. :size="'mini'"
  43. :isDetail="false"
  44. :names="''"
  45. :placeholder="'商品品牌'"
  46. @searchChange="brandidsearchChange"
  47. />
  48. </el-col>
  49. <el-col :span="6" style="width: 310px; padding: 0 0 0 10px">
  50. <good-class
  51. :value="parmValue.cat_id"
  52. @handleChange="goods_class_change"
  53. :disabled="false"
  54. :size="searchSize"
  55. :isDetail="false"
  56. :placeholder="'分类'"
  57. />
  58. </el-col>
  59. <el-col
  60. :span="3"
  61. class="fr"
  62. style="width: 66px; padding: 0 0 0 10px"
  63. >
  64. <el-button type="primary" :size="searchSize" @click="searchList">
  65. 刷新
  66. </el-button>
  67. </el-col>
  68. <el-col
  69. :span="3"
  70. class="fr"
  71. style="width: 66px; padding: 0 0 0 10px"
  72. >
  73. <el-button type="warning" :size="searchSize" @click="restSearch">
  74. 重置
  75. </el-button>
  76. </el-col>
  77. </el-row>
  78. <el-row>
  79. <el-col :span="4" style="width: 226px">
  80. <el-select
  81. v-model="parmValue.status"
  82. filterable
  83. clearable
  84. :size="searchSize"
  85. placeholder="状态"
  86. style="width: 100%"
  87. @change="
  88. pageInfo.curr = 1;
  89. parmValue.page = 1;
  90. searchList();
  91. "
  92. >
  93. <el-option
  94. v-for="item in statusList"
  95. :key="'status' + item.code"
  96. :label="item.name"
  97. :value="item.code"
  98. />
  99. </el-select>
  100. </el-col>
  101. <el-col :span="4" style="width: 145px; padding: 0 0 0 10px">
  102. <el-select
  103. v-model="parmValue.isonline"
  104. filterable
  105. clearable
  106. :size="searchSize"
  107. placeholder="是否上线"
  108. style="width: 100%"
  109. @change="
  110. pageInfo.curr = 1;
  111. parmValue.page = 1;
  112. searchList();
  113. "
  114. >
  115. <el-option
  116. v-for="item in isonlineoptions"
  117. :key="'isonline' + item.id"
  118. :label="item.name"
  119. :value="item.id"
  120. />
  121. </el-select>
  122. </el-col>
  123. <el-col :span="4" style="width: 420px; padding: 0 0 0 10px">
  124. <el-input
  125. :size="searchSize"
  126. v-model="sinput"
  127. :maxlength="40"
  128. @blur="
  129. pageInfo.curr = 1;
  130. parmValue.page = 1;
  131. searchList();
  132. "
  133. placeholder="关键字"
  134. ><el-select
  135. v-model="select"
  136. slot="prepend"
  137. style="width: 135px"
  138. @change="
  139. pageInfo.curr = 1;
  140. parmValue.page = 1;
  141. searchList();
  142. "
  143. placeholder="关键字类型"
  144. >
  145. <el-option label="商品编号" value="1" />
  146. <el-option label="商品名称" value="2" />
  147. <el-option label="业务企业编号" value="3" />
  148. <el-option label="供应商编号" value="4" /> </el-select
  149. ></el-input>
  150. </el-col>
  151. <el-col
  152. :span="3"
  153. class="fr"
  154. style="width: 66px; padding: 0 0 0 10px"
  155. v-if="powers.some((item) => item == '003')"
  156. >
  157. <el-button
  158. :size="searchSize"
  159. type="success"
  160. style="float: right"
  161. @click="
  162. routeGoto('goodsCostDetail', { id: 'add', type: 'add' })
  163. "
  164. >
  165. 添加
  166. </el-button>
  167. </el-col>
  168. <el-col
  169. :span="3"
  170. class="fr"
  171. style="width: 110px; padding: 0 0 0 10px"
  172. v-if="powers.some((item) => item == '055')"
  173. >
  174. <el-button
  175. :size="searchSize"
  176. type="warning"
  177. style="float: right"
  178. @click="add_online"
  179. >
  180. <i class="el-icon-circle-plus-outline"></i>
  181. <span>商品上线</span>
  182. </el-button>
  183. </el-col>
  184. </el-row>
  185. </div></template
  186. >
  187. <template #good_thumb_img="{ scope }">
  188. <div
  189. v-if="scope.row.good_thumb_img"
  190. style="width: 20px; height: 20px"
  191. class="hover"
  192. v-viewer
  193. >
  194. <img
  195. :src="scope.row.good_thumb_img"
  196. style="display: inline-block; width: 100%; height: 100%"
  197. alt=""
  198. />
  199. </div>
  200. </template>
  201. <template #status="{ scope }">
  202. <el-tag
  203. :size="tablebtnSize"
  204. :type="
  205. (statusList.find((item) => item.code == scope.row.status) || {})
  206. .type || '--'
  207. "
  208. v-text="
  209. (statusList.find((item) => item.code == scope.row.status) || {})
  210. .name || '--'
  211. "
  212. ></el-tag>
  213. </template>
  214. <template #isonline="{ scope }">
  215. <el-tag
  216. :size="tablebtnSize"
  217. :type="scope.row.is_online == '0' ? 'warning' : ''"
  218. v-text="
  219. (
  220. isonlineoptions.find((item) => item.id == scope.row.is_online) ||
  221. {}
  222. ).name || '--'
  223. "
  224. ></el-tag>
  225. </template>
  226. <template #operation="{ scope }">
  227. <el-tooltip
  228. v-if="powers.some((item) => item == '007')&&(scope.row.status !== '8')"
  229. effect="dark"
  230. content="详情"
  231. placement="top"
  232. >
  233. <i
  234. class="el-icon-view tb-icon"
  235. @click="
  236. routeGoto('goodsCostDetail', {
  237. id: scope.row.spuCode,
  238. type: 'view',
  239. })
  240. "
  241. ></i>
  242. </el-tooltip>
  243. <el-tooltip
  244. v-if="
  245. (powers.some((item) => item == '005') &&
  246. scope.row.status === '7') ||
  247. (powers.some((item) => item == '005') && scope.row.status === '6')||
  248. (powers.some((item) => item == '005') && scope.row.status === '8')
  249. "
  250. effect="dark"
  251. content="修改"
  252. placement="top"
  253. >
  254. <i
  255. class="el-icon-edit tb-icon"
  256. @click="
  257. routeGoto('goodsCostDetail', {
  258. id: scope.row.spuCode,
  259. type: 'edit',
  260. })
  261. "
  262. ></i>
  263. </el-tooltip>
  264. <el-tooltip
  265. v-if="
  266. (powers.some((item) => item == '054') &&
  267. scope.row.status === '1') ||
  268. (powers.some((item) => item == '054') && scope.row.status === '4')
  269. "
  270. effect="dark"
  271. content="修改基础信息"
  272. placement="top"
  273. >
  274. <i
  275. class="el-icon-c-scale-to-original tb-icon"
  276. @click="
  277. wantto(
  278. scope.row.is_online,
  279. scope.row.spuCode,
  280. scope.row.status,
  281. '2'
  282. )
  283. "
  284. ></i>
  285. </el-tooltip>
  286. <el-tooltip
  287. v-if="
  288. (powers.some((item) => item == '053') &&
  289. scope.row.status === '1') ||
  290. (powers.some((item) => item == '053') && scope.row.status === '5')
  291. "
  292. effect="dark"
  293. content="修改成本信息"
  294. placement="top"
  295. >
  296. <i
  297. class="el-icon-coin tb-icon"
  298. @click="
  299. wantto(
  300. scope.row.is_online,
  301. scope.row.spuCode,
  302. scope.row.status,
  303. '3'
  304. )
  305. "
  306. ></i>
  307. </el-tooltip>
  308. <el-tooltip
  309. v-if="
  310. powers.some((item) => item == '010') && scope.row.status !== '7'
  311. "
  312. effect="dark"
  313. content="复制商品"
  314. placement="top"
  315. >
  316. <i
  317. class="el-icon-document-copy tb-icon"
  318. @click="good_copy(scope.row.spuCode)"
  319. ></i>
  320. </el-tooltip>
  321. <el-tooltip
  322. v-if="powers.some((item) => item == '006')"
  323. effect="dark"
  324. content="删除"
  325. placement="top"
  326. >
  327. <i
  328. class="el-icon-delete tb-icon"
  329. @click="deleteItem(scope.row.spuCode)"
  330. ></i>
  331. </el-tooltip>
  332. </template>
  333. </ex-table>
  334. <no-auth v-else></no-auth>
  335. <add-edit
  336. :id="''"
  337. :sitem="changeList"
  338. :show-model="showModel"
  339. :is-detail="false"
  340. @refresh="showModel = false"
  341. @cancel="showModel = false"
  342. />
  343. </div>
  344. </template>
  345. <script>
  346. import asyncRequest from "@/apis/service/goodStore/goodsCost";
  347. import mixinPage from "@/mixins/elPaginationHandle";
  348. import { mapGetters } from "vuex";
  349. import resToken from "@/mixins/resToken";
  350. import { listCol, options1 } from "./columns";
  351. import addEdit from "./components/addEdit";
  352. export default {
  353. name: "goodsCost",
  354. mixins: [mixinPage, resToken],
  355. components: {
  356. addEdit,
  357. },
  358. computed: {
  359. //组件SIZE设置
  360. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  361. powers() {
  362. let tran =
  363. this.$store.getters.btnList.find(
  364. (item) => item.menu_route == "goodsCost"
  365. ) || {};
  366. if (tran && tran.action && tran.action.length > 0) {
  367. return tran.action;
  368. } else {
  369. return [];
  370. }
  371. },
  372. },
  373. data() {
  374. return {
  375. statusList: [
  376. {
  377. code: "0",
  378. name: "新建待审核",
  379. type: "",
  380. },
  381. {
  382. code: "1",
  383. name: "审核通过",
  384. type: "success",
  385. },
  386. {
  387. code: "2",
  388. name: "基础修改待审核",
  389. type: "",
  390. },
  391. {
  392. code: "3",
  393. name: "成本修改待审核",
  394. type: "",
  395. },
  396. {
  397. code: "4",
  398. name: "基础修改驳回",
  399. type: "danger",
  400. },
  401. {
  402. code: "5",
  403. name: "成本修改驳回",
  404. type: "danger",
  405. },
  406. {
  407. code: "6",
  408. name: "新建审核驳回",
  409. type: "danger",
  410. },
  411. {
  412. code: "7",
  413. name: "复制商品待编辑",
  414. type: "info",
  415. },
  416. {
  417. code: "8",
  418. name: "咨询商品待编辑",
  419. type: "info",
  420. },
  421. ],
  422. isonlineoptions: [
  423. { id: "0", name: "未上线" },
  424. { id: "1", name: "已上线" },
  425. ],
  426. showModel: false,
  427. options1: options1,
  428. loading: false,
  429. changeList: [],
  430. parmValue: {
  431. page: 1, // 页码
  432. size: 15, // 每页显示条数
  433. start: "",
  434. end: "",
  435. status: "",
  436. good_name: "",
  437. spucode: "",
  438. cat_id: [],
  439. brandid: "",
  440. good_type: "",
  441. companyNo: "",
  442. supplierNo: "",
  443. isonline: "",
  444. // creater: "",
  445. },
  446. sinput: "",
  447. select: "",
  448. // 表格 - 数据
  449. tableData: [],
  450. // 表格 - 参数
  451. table: {
  452. stripe: true,
  453. border: true,
  454. _defaultHeader_: ["setcol"],
  455. },
  456. // 表格 - 分页
  457. pageInfo: {
  458. size: 15,
  459. curr: 1,
  460. total: 0,
  461. },
  462. // 表格 - 列参数
  463. columns: listCol,
  464. supplierNo: [],
  465. brandid: [],
  466. };
  467. },
  468. mounted() {
  469. this.select = "1";
  470. this.supplierNo = [];
  471. this.brandid = [];
  472. this.searchList();
  473. },
  474. methods: {
  475. restSearch() {
  476. this.select = "1";
  477. this.supplierNo = [];
  478. this.brandid = [];
  479. // 表格 - 分页
  480. this.pageInfo = {
  481. size: 15,
  482. curr: 1,
  483. total: 0,
  484. };
  485. this.parmValue = {
  486. page: 1, // 页码
  487. size: 15, // 每页显示条数
  488. start: "",
  489. end: "",
  490. status: "",
  491. good_name: "",
  492. spucode: "",
  493. cat_id: [],
  494. brandid: "",
  495. good_type: "",
  496. isonline: "",
  497. companyNo: "",
  498. supplierNo: "",
  499. };
  500. this.searchList();
  501. },
  502. wantto(isonline, code, ntype, wtype) {
  503. console.log(isonline);
  504. if (isonline + "" === "1") {
  505. this.$message.warning("已上线的商品需要下线才能修改!");
  506. return;
  507. }
  508. if (ntype === "0") {
  509. this.$message.warning("新建商品成正在审核中,请审核结束后再修改!");
  510. return;
  511. }
  512. if (ntype === "2") {
  513. if (wtype === "2") {
  514. this.$message.warning("商品基础信息已修改,请等待审核结果!");
  515. return;
  516. }
  517. if (wtype === "3") {
  518. this.$message.warning(
  519. "商品基础信息修改流程正在审核中,请审核结束后再修改!"
  520. );
  521. return;
  522. }
  523. }
  524. if (ntype === "3") {
  525. if (wtype === "3") {
  526. this.$message.warning("商品成本信息已修改,请等待审核结果!");
  527. return;
  528. }
  529. if (wtype === "2") {
  530. this.$message.warning(
  531. "商品成信息修改流程正在审核中,请审核结束后再修改!"
  532. );
  533. return;
  534. }
  535. }
  536. console.log(ntype + "----" + wtype);
  537. this.routeGoto("goodsCostDetail", {
  538. id: code,
  539. type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : "",
  540. });
  541. },
  542. selection_change(e) {
  543. const { list } = e;
  544. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  545. },
  546. //商品品牌选择
  547. async brandidsearchChange(e) {
  548. const { id, code, label } = e;
  549. if (id) {
  550. this.brandid = [id];
  551. } else {
  552. this.brandid = [];
  553. }
  554. this.parmValue.brandid = this.brandid.toString();
  555. this.pageInfo.curr = 1;
  556. this.parmValue.page = 1;
  557. await this.searchList();
  558. },
  559. // 时间
  560. async handleTime(e) {
  561. this.parmValue.start = e.startTime || "";
  562. this.parmValue.end = e.endTime || "";
  563. if (
  564. (this.parmValue.start !== "" && this.parmValue.end !== "") ||
  565. (this.parmValue.start === "" && this.parmValue.end === "")
  566. ) {
  567. this.pageInfo.curr = 1;
  568. this.parmValue.page = 1;
  569. await this.searchList();
  570. }
  571. },
  572. async good_copy(spuCode) {
  573. await this.$confirm(`确定要复制该商品?`, {
  574. confirmButtonText: "确定",
  575. cancelButtonText: "取消",
  576. type: "warning",
  577. })
  578. .then(async () => {
  579. this.loading = true;
  580. const model = {
  581. spuCode: spuCode,
  582. };
  583. const res = await asyncRequest.copy(model);
  584. if (res && res.code === 0) {
  585. this.loading = false;
  586. this.$notify.success({
  587. title: "复制商品成功!",
  588. message: "",
  589. });
  590. await this.searchList();
  591. } else if (res && res.code >= 100 && res.code <= 104) {
  592. await this.logout();
  593. } else {
  594. this.loading = false;
  595. this.$message.warning(res.message);
  596. }
  597. })
  598. .catch(() => {
  599. console.log("取消");
  600. });
  601. },
  602. /**
  603. * 启用/禁用
  604. * @param {String} id id
  605. * @param {String} status 0-禁用 1-启用
  606. */
  607. async changeStatus(id, status) {
  608. await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
  609. confirmButtonText: "确定",
  610. cancelButtonText: "取消",
  611. type: "warning",
  612. })
  613. .then(async () => {
  614. this.loading = true;
  615. const model = {
  616. id: id,
  617. status: status === "1" ? "0" : "1",
  618. };
  619. const res = await asyncRequest.status(model);
  620. if (res && res.code === 0) {
  621. this.loading = false;
  622. this.$notify.success({
  623. title: "状态修改成功!",
  624. message: "",
  625. });
  626. await this.searchList();
  627. } else if (res && res.code >= 100 && res.code <= 104) {
  628. await this.logout();
  629. } else {
  630. this.loading = false;
  631. this.$message.warning(res.message);
  632. }
  633. })
  634. .catch(() => {
  635. console.log("取消");
  636. });
  637. },
  638. async deleteItem(code) {
  639. await this.$confirm("确定要删除?", {
  640. confirmButtonText: "确定",
  641. cancelButtonText: "取消",
  642. type: "warning",
  643. })
  644. .then(async () => {
  645. const model = {
  646. codes: [code],
  647. };
  648. const res = await asyncRequest.delete(model);
  649. if (res && res.code === 0) {
  650. this.$notify.success({
  651. title: "删除成功",
  652. message: "",
  653. });
  654. this.searchList();
  655. } else if (res && res.code >= 100 && res.code <= 104) {
  656. await this.logout();
  657. } else {
  658. this.$message.warning(res.message);
  659. }
  660. })
  661. .catch(() => {
  662. console.log("取消");
  663. });
  664. },
  665. // 刷新表格
  666. async searchList() {
  667. if (
  668. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  669. (this.parmValue.start === "" && this.parmValue.end !== "")
  670. ) {
  671. this.$message.warning("时间区间不完整!");
  672. return;
  673. }
  674. this.loading = true;
  675. this.parmValue.spucode = this.select === "1" ? this.sinput : "";
  676. this.parmValue.good_name = this.select === "2" ? this.sinput : "";
  677. this.parmValue.companyNo = this.select === "3" ? this.sinput : "";
  678. this.parmValue.supplierNo = this.select === "4" ? this.sinput : "";
  679. let item = JSON.parse(JSON.stringify(this.parmValue));
  680. item.cat_id =
  681. item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
  682. const res = await asyncRequest.list(item);
  683. if (res && res.code === 0 && res.data) {
  684. this.tableData = res.data.list;
  685. this.tableData.forEach((a) => {
  686. a.cat_name = "";
  687. let list = a.cat_info || [];
  688. list.forEach((b, i) => {
  689. a.cat_name += i == 0 ? b.name : "/" + b.name;
  690. });
  691. });
  692. this.pageInfo.total = Number(res.data.count);
  693. } else if (res && res.code >= 100 && res.code <= 104) {
  694. await this.logout();
  695. } else {
  696. this.tableData = [];
  697. this.pageInfo.total = 0;
  698. }
  699. this.loading = false;
  700. },
  701. //商品分类选择
  702. async goods_class_change(e) {
  703. this.parmValue.cat_id = e;
  704. this.pageInfo.curr = 1;
  705. this.parmValue.page = 1;
  706. await this.searchList();
  707. },
  708. add_online() {
  709. if (this.changeList.length === 0) {
  710. this.$message.warning("至少选择一个商品!");
  711. return;
  712. }
  713. if (this.changeList.length >100) {
  714. this.$message.warning("商品数量不能超过100!");
  715. return;
  716. }
  717. let isok = true;
  718. this.changeList.forEach((e) => {
  719. if (e.status !== "1") {
  720. isok = false;
  721. }
  722. });
  723. if (!isok) {
  724. this.$message.warning("只有审核通过的商品可以上线!");
  725. return;
  726. }
  727. this.showModel = true;
  728. },
  729. },
  730. };
  731. </script>
  732. <style lang="scss" scoped>
  733. </style>