index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. <template>
  2. <div class="sort 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. >
  24. <template #table-header="{}">
  25. <div style="width: 100%">
  26. <el-row style="padding: 0 0 10px 80px">
  27. <el-col :span="3" style="width: 748px">
  28. <div class="my-breadcrumb clear">
  29. <div
  30. class="my-breadcrumb-item"
  31. v-for="(item, index) in titleList"
  32. :key="item + index"
  33. @click="changeBreadcrumb(index)"
  34. >
  35. <span class="label">{{ item.titleName }}</span>
  36. <span class="separator" v-if="index + 1 !== titleList.length">/</span>
  37. </div>
  38. </div>
  39. </el-col>
  40. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  41. <el-button type="primary" :size="searchSize" @click="searchList"
  42. >刷新</el-button
  43. >
  44. </el-col>
  45. <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
  46. <el-button type="warning" :size="searchSize" @click="restSearch"
  47. >重置</el-button
  48. >
  49. </el-col>
  50. </el-row>
  51. <el-row>
  52. <!-- <el-col :span="4" style="width: 160px">
  53. <el-select
  54. v-model="parmValue.status"
  55. filterable
  56. clearable
  57. :size="searchSize"
  58. placeholder="分类状态"
  59. style="width: 100%"
  60. @change="
  61. pageInfo.curr = 1;
  62. parmValue.page = 1;
  63. searchList();
  64. "
  65. >
  66. <el-option
  67. v-for="item in statusList"
  68. :key="'status' + item.code"
  69. :label="item.name"
  70. :value="item.code"
  71. />
  72. </el-select>
  73. </el-col> -->
  74. <!-- padding: 0 0 0 10px" -->
  75. <el-col :span="4" style="width: 380px;">
  76. <el-input
  77. :size="searchSize"
  78. v-model="parmValue.cat_name"
  79. :maxlength="40"
  80. @blur="
  81. pageInfo.curr = 1;
  82. parmValue.page = 1;
  83. searchList();
  84. "
  85. placeholder="分类名称"
  86. ></el-input>
  87. </el-col>
  88. <el-col
  89. :span="3"
  90. class="fr"
  91. style="width: 66px; padding: 0 0 0 10px"
  92. v-if="powers.some((i) => i == '003')"
  93. >
  94. <el-button
  95. :size="searchSize"
  96. type="success"
  97. style="float: right"
  98. @click="openModal({}, '003')"
  99. >添加</el-button
  100. >
  101. </el-col>
  102. </el-row>
  103. </div>
  104. </template>
  105. <template #status="{ scope }">
  106. <el-tag
  107. :size="tablebtnSize"
  108. :type="scope.row.status == '0' ? 'warning' : ''"
  109. v-text="
  110. (statusOptions.find((item) => item.id == scope.row.status) || {}).label ||
  111. '--'
  112. "
  113. ></el-tag>
  114. </template>
  115. <template #supplierNo>
  116. {{ getCompanyWithCode().code }}
  117. </template>
  118. <template #supplierName>
  119. {{ getCompanyWithCode().name }}
  120. </template>
  121. <template #operation="{ scope }">
  122. <el-tooltip
  123. v-if="powers.some((i) => i == '007')"
  124. effect="dark"
  125. content="详情"
  126. placement="top"
  127. >
  128. <i class="el-icon-view tb-icon" @click="openModal(scope.row, '007')"></i>
  129. </el-tooltip>
  130. <el-tooltip
  131. v-if="powers.some((i) => i == '005')"
  132. effect="dark"
  133. content="修改"
  134. placement="top"
  135. >
  136. <i class="el-icon-edit tb-icon" @click="openModal(scope.row, '005')"></i>
  137. </el-tooltip>
  138. <el-tooltip
  139. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '1'"
  140. effect="dark"
  141. content="禁用"
  142. placement="top"
  143. >
  144. <i
  145. class="el-icon-video-pause tb-icon"
  146. @click="changeStatus(scope.row.cat_id, scope.row.status)"
  147. ></i>
  148. </el-tooltip>
  149. <el-tooltip
  150. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '0'"
  151. effect="dark"
  152. content="启用"
  153. placement="top"
  154. >
  155. <i
  156. class="el-icon-video-play tb-icon"
  157. @click="changeStatus(scope.row.cat_id, scope.row.status)"
  158. ></i>
  159. </el-tooltip>
  160. <!--
  161. <el-tooltip
  162. v-if="powers.some((i) => i == '006')"
  163. effect="dark"
  164. content="删除"
  165. placement="top"
  166. >
  167. <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.id)"></i>
  168. </el-tooltip> -->
  169. <el-tooltip
  170. v-if="parseInt(scope.row.level) < 3"
  171. effect="dark"
  172. content="下级分类"
  173. placement="top"
  174. >
  175. <i class="el-icon-arrow-right tb-icon" @click="openChildren(scope.row)"></i>
  176. </el-tooltip>
  177. </template>
  178. </ex-table>
  179. <no-auth v-else></no-auth>
  180. <!-- 弹窗 新增/修改 -->
  181. <add-edit-rate
  182. :id="modelRateId"
  183. :show-model="showRateModel"
  184. :is-detail="isDetail"
  185. :sitem="sitemRate"
  186. :titleList="titleList"
  187. @refresh="searchList"
  188. @cancel="showRateModel = false"
  189. />
  190. </div>
  191. </template>
  192. <script>
  193. import addEdit from "./addEdit";
  194. import addEditRate from "./addEditRate";
  195. import asyncRequest from "@/apis/service/serviceParam/grossProfit";
  196. import mixinPage from "@/mixins/elPaginationHandle";
  197. import { statusList } from "@/assets/js/statusList";
  198. import roleLevel from "@/assets/js/roleLevel";
  199. import companyHelper from "@/mixins/companyHelper";
  200. import resToken from "@/mixins/resToken";
  201. import { mapGetters } from "vuex";
  202. export default {
  203. name: "grossProfit",
  204. mixins: [mixinPage, resToken, companyHelper],
  205. components: { addEdit, addEditRate },
  206. computed: {
  207. //组件SIZE设置
  208. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  209. powers() {
  210. const { btnList } = this.$store.getters;
  211. const tran = btnList.find((i) => i.menu_route == "grossProfit") || {};
  212. const { action } = tran ?? {};
  213. return action ?? [];
  214. },
  215. },
  216. data() {
  217. return {
  218. statusList: statusList,
  219. roleLevel: roleLevel,
  220. loading: true,
  221. showModel: false,
  222. modelId: "000",
  223. sitem: {},
  224. showRateModel: false,
  225. modelRateId: "000",
  226. sitemRate: {},
  227. titleList: [],
  228. parmValue: {
  229. page: 1, // 页码
  230. size: 15, // 每页显示条数
  231. cat_name: "",
  232. pid: "0",
  233. },
  234. isDetail: false,
  235. // 状态
  236. statusOptions: [
  237. { id: "0", label: "禁用" },
  238. { id: "1", label: "启用" },
  239. ],
  240. // 表格 - 数据
  241. tableData: [],
  242. // 表格 - 参数
  243. table: {
  244. stripe: true,
  245. border: true,
  246. _defaultHeader_: ["setcol"],
  247. },
  248. // 表格 - 分页
  249. pageInfo: {
  250. size: 15,
  251. curr: 1,
  252. total: 0,
  253. },
  254. // 表格 - 列参数
  255. columns: [
  256. {
  257. prop: "cat_name",
  258. label: "分类名称",
  259. // width: "130px"
  260. },
  261. {
  262. prop: "status",
  263. label: "状态",
  264. _slot_: "status",
  265. width: "70px",
  266. },
  267. {
  268. prop: "level",
  269. label: "分类等级",
  270. width: "80px",
  271. },
  272. {
  273. prop: "supplierNo",
  274. label: "公司编码",
  275. width: "260px",
  276. _slot_: "supplierNo",
  277. },
  278. {
  279. prop: "supplierName",
  280. label: "公司名称",
  281. width: "260px",
  282. _slot_: "supplierName",
  283. },
  284. {
  285. prop: "",
  286. label: "操作",
  287. fixed: "right",
  288. width: "140px",
  289. _noset_: true,
  290. _slot_: "operation",
  291. },
  292. ],
  293. };
  294. },
  295. mounted() {
  296. this.initTitleList();
  297. this.parmValue.pid = "0";
  298. this.searchList();
  299. },
  300. methods: {
  301. restSearch() {
  302. // 表格 - 分页
  303. this.pageInfo = {
  304. size: 15,
  305. curr: 1,
  306. total: 0,
  307. };
  308. this.parmValue = {
  309. page: 1, // 页码
  310. size: 15, // 每页显示条数
  311. status: "",
  312. pid: "0",
  313. cat_name: "",
  314. };
  315. this.initTitleList();
  316. this.searchList();
  317. },
  318. initTitleList() {
  319. this.titleList = [];
  320. let model = { id: "0", titleName: "全部一级分类" };
  321. this.titleList.push(model);
  322. },
  323. //查看下一级分类
  324. async openChildren(item) {
  325. this.parmValue.pid = item.cat_id;
  326. this.parmValue.cat_name = ""
  327. this.parmValue.status = ""
  328. this.pageInfo.curr = 1;
  329. this.parmValue.page = 1;
  330. await this.searchList();
  331. let model = {
  332. id: item.cat_id,
  333. titleName: item.cat_name,
  334. };
  335. this.titleList.push(model);
  336. },
  337. //设置毛利率
  338. setRate(row) {
  339. this.modelRateId = row.id;
  340. this.sitemRate = row;
  341. this.showRateModel = true;
  342. this.isDetail = false;
  343. },
  344. // 新建/编辑/详情
  345. openModal(row, type) {
  346. // const { status } = row;
  347. // if (type === "005" && status + '' === "1") {
  348. // this.$message.warning("禁用后,才可以修改!");
  349. // return;
  350. // }
  351. this.modelRateId = row.id;
  352. this.sitemRate = row;
  353. this.showRateModel = true;
  354. this.isDetail = type === "007";
  355. },
  356. async changeBreadcrumb(index) {
  357. if (index + 1 === this.titleList.length) {
  358. return;
  359. } else {
  360. this.parmValue.pid = this.titleList[index].id;
  361. this.parmValue.cat_name = ""
  362. this.parmValue.status = ""
  363. this.titleList = this.titleList.slice(0, index + 1);
  364. }
  365. console.log(this.titleList[index])
  366. this.pageInfo.curr = 1;
  367. this.parmValue.page = 1;
  368. await this.searchList();
  369. },
  370. /**
  371. * 启用/禁用
  372. * @param {String} id id
  373. * @param {String} status 0-禁用 1-启用
  374. */
  375. async changeStatus(cat_id, status) {
  376. await this.$confirm(`确定要改为${status + "" === "1" ? "禁用" : "启用"}?`, {
  377. confirmButtonText: "确定",
  378. cancelButtonText: "取消",
  379. type: "warning",
  380. })
  381. .then(async () => {
  382. this.loading = true;
  383. const model = {
  384. cat_id,
  385. companyNo: this.currentCompany || "",
  386. status: status + "" === "1" ? "0" : "1",
  387. };
  388. console.log(model, status);
  389. const res = await asyncRequest.status(model);
  390. if (res && res.code === 0) {
  391. this.loading = false;
  392. this.$notify.success({
  393. title: "状态修改成功!",
  394. message: "",
  395. });
  396. await this.searchList();
  397. } else if (res && res.code >= 100 && res.code <= 104) {
  398. await this.logout();
  399. } else {
  400. this.loading = false;
  401. this.$message.warning(res.message);
  402. }
  403. })
  404. .catch(() => {
  405. console.log("取消");
  406. });
  407. },
  408. // async deleteItem(id) {
  409. // await this.$confirm("确定要删除?", {
  410. // confirmButtonText: "确定",
  411. // cancelButtonText: "取消",
  412. // type: "warning"
  413. // })
  414. // .then(async () => {
  415. // const model = {
  416. // id: id
  417. // };
  418. // const res = await asyncRequest.delete(model);
  419. // if (res && res.code === 0) {
  420. // this.$notify.success({
  421. // title: "删除成功",
  422. // message: ""
  423. // });
  424. // this.searchList();
  425. // } else if (res && res.code >= 100 && res.code <= 104) {
  426. // await this.logout();
  427. // } else {
  428. // this.$message.warning(res.message);
  429. // }
  430. // })
  431. // .catch(() => {
  432. // console.log("取消");
  433. // });
  434. // },
  435. // 刷新表格
  436. async searchList() {
  437. if (!this.currentCompany) {
  438. this.$message.warning("请在右上角选择一家公司");
  439. this.loading = false;
  440. this.tableData = [];
  441. return;
  442. }
  443. this.parmValue.companyNo = this.currentCompany;
  444. this.loading = true;
  445. const res = await asyncRequest.list(this.parmValue);
  446. if (res && res.code === 0 && res.data) {
  447. this.tableData = res.data.list;
  448. this.tableData.forEach((e) => {
  449. if (e.im && e.im.length > 0) {
  450. e.specs = "";
  451. e.im.forEach((a, i) => {
  452. e.specs += i === 0 ? a.spec_name : `,${a.spec_name}`;
  453. });
  454. } else {
  455. e.specs = "";
  456. }
  457. });
  458. this.pageInfo.total = Number(res.data.count);
  459. } else if (res && res.code >= 100 && res.code <= 104) {
  460. await this.logout();
  461. } else {
  462. this.tableData = [];
  463. this.pageInfo.total = 0;
  464. }
  465. this.loading = false;
  466. },
  467. },
  468. };
  469. </script>
  470. <style lang="scss" scoped>
  471. .sort {
  472. .my-breadcrumb {
  473. .my-breadcrumb-item {
  474. float: left;
  475. span {
  476. height: 32px;
  477. line-height: 32px;
  478. }
  479. .label {
  480. padding: 0 5px 0 0;
  481. color: 010101;
  482. }
  483. .separator {
  484. color: #787878;
  485. font-size: 13px;
  486. padding: 0 5px 0 0;
  487. }
  488. &:last-child {
  489. .label {
  490. color: #787878;
  491. }
  492. }
  493. &:hover {
  494. cursor: pointer;
  495. }
  496. &:last-child {
  497. cursor: default;
  498. }
  499. &:only-child {
  500. cursor: pointer;
  501. }
  502. // &.chover {
  503. // cursor: pointer;
  504. // }
  505. }
  506. }
  507. }
  508. </style>