index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. <template>
  2. <div class="storeSet pagePadding">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  5. >
  6. <ex-table
  7. v-loading="false"
  8. :table="table"
  9. :data="tableData"
  10. :columns="columns"
  11. :page="pageInfo"
  12. :size="size"
  13. @page-curr-change="handlePageChange"
  14. @page-size-change="handleSizeChange"
  15. @screen-reset="
  16. pageInfo.curr = 1;
  17. parmValue.page = 1;
  18. searchList();
  19. "
  20. @screen-submit="
  21. pageInfo.curr = 1;
  22. parmValue.page = 1;
  23. searchList();
  24. "
  25. >
  26. <template #table-header="{}">
  27. <div style="width: 100%">
  28. <el-row style="padding: 0 0 10px 80px">
  29. <!-- 创建时间 -->
  30. <el-col :span="18" style="width: 303px; padding: 0">
  31. <period-date-picker
  32. :start="parmValue.start"
  33. :end="parmValue.end"
  34. :type="1"
  35. :width="'135px'"
  36. :title="'创建'"
  37. :size="searchSize"
  38. @numReturned="numReturned($event, 0)"
  39. />
  40. </el-col>
  41. <el-col :span="18" style="width: 420px; padding: 0">
  42. <el-input
  43. placeholder="关键字"
  44. v-model="input"
  45. maxlength="40"
  46. :size="searchSize"
  47. class="input-with-select"
  48. >
  49. <el-select
  50. v-model="select"
  51. slot="prepend"
  52. style="width: 125px"
  53. placeholder="关键字类型"
  54. >
  55. <el-option label="仓库编码" value="1"></el-option>
  56. <el-option label="负责人姓名" value="2"></el-option>
  57. <el-option label="负责人手机号" value="3"></el-option>
  58. </el-select>
  59. <el-button
  60. slot="append"
  61. icon="el-icon-search"
  62. @click="searchList"
  63. ></el-button>
  64. </el-input>
  65. </el-col>
  66. <el-col :span="4" style="width: 66px; padding-left: 10px">
  67. <el-button
  68. type="warning"
  69. class="fl"
  70. :size="searchSize"
  71. @click="restSearch"
  72. >
  73. 重置
  74. </el-button>
  75. </el-col>
  76. <el-col
  77. :span="3"
  78. style="width: 56px; margin-left: 10px"
  79. class="fr"
  80. >
  81. <el-button
  82. :size="searchSize"
  83. type="primary"
  84. @click="searchList"
  85. >
  86. 刷新
  87. </el-button>
  88. </el-col>
  89. </el-row>
  90. <el-row style="padding: 0">
  91. <el-col :span="18" style="width: 340px; padding: 0">
  92. <!-- <search-customer
  93. :value="supplierNo"
  94. :size="searchSize"
  95. :code="parmValue.supplierNo"
  96. :companyNo="parmValue.supplierNo"
  97. :placeholder="'供应商公司名称'"
  98. :is-detail="true"
  99. :disabled="false"
  100. :names="''"
  101. @searchChange="supplierChange"
  102. /> -->
  103. <search-supplier
  104. :value="supplierNo"
  105. :size="searchSize"
  106. :code="parmValue.supplierNo"
  107. :placeholder="'供应商公司名称'"
  108. :is-detail="false"
  109. :disabled="false"
  110. :names="''"
  111. @searchChange="supplierChange"
  112. />
  113. <!-- <search-customer
  114. :value="supplierNo"
  115. :size="searchSize"
  116. :placeholder="'供应商公司名称'"
  117. :disabled="false"
  118. @searchChange="supplierChange"
  119. /> -->
  120. </el-col>
  121. <el-col
  122. :span="3"
  123. style="width: 56px"
  124. class="mr10 fr"
  125. v-if="powers.some((item) => item == '003')"
  126. >
  127. <el-button
  128. class="fl"
  129. :size="searchSize"
  130. type="success"
  131. @click="openModal('add', false)"
  132. >
  133. 新建
  134. </el-button>
  135. </el-col>
  136. </el-row>
  137. </div>
  138. </template>
  139. <template #status="{ scope }">
  140. <el-tag
  141. :size="tablebtnSize"
  142. :type="scope.row.status == '0' ? 'warning' : ''"
  143. v-text="
  144. (statusOptions.find((item) => item.id == scope.row.status) || {})
  145. .label || '--'
  146. "
  147. ></el-tag>
  148. </template>
  149. <template #operation="{ scope }">
  150. <el-tooltip
  151. v-if="powers.some((item) => item == '007')"
  152. effect="dark"
  153. content="详情"
  154. placement="top"
  155. >
  156. <i
  157. class="el-icon-view tb-icon"
  158. @click="openModal(scope.row.id, true)"
  159. ></i>
  160. </el-tooltip>
  161. <el-tooltip
  162. v-if="powers.some((item) => item == '005')"
  163. effect="dark"
  164. content="修改"
  165. placement="top"
  166. >
  167. <i
  168. class="el-icon-edit tb-icon"
  169. @click="openModal(scope.row.id, false)"
  170. ></i>
  171. </el-tooltip>
  172. <el-tooltip
  173. v-if="
  174. powers.some((item) => item == '004') && scope.row.status === '1'
  175. "
  176. effect="dark"
  177. content="禁用"
  178. placement="top"
  179. >
  180. <i
  181. class="el-icon-video-pause tb-icon"
  182. @click="statusConfirm(scope.row.id, scope.row.status)"
  183. ></i>
  184. </el-tooltip>
  185. <el-tooltip
  186. v-if="
  187. powers.some((item) => item == '004') && scope.row.status === '0'
  188. "
  189. effect="dark"
  190. content="启用"
  191. placement="top"
  192. >
  193. <i
  194. class="el-icon-video-play tb-icon"
  195. @click="statusConfirm(scope.row.id, scope.row.status)"
  196. ></i>
  197. </el-tooltip>
  198. <el-tooltip
  199. v-if="powers.some((item) => item == '006')"
  200. effect="dark"
  201. content="删除"
  202. placement="top"
  203. >
  204. <i
  205. class="el-icon-delete tb-icon"
  206. @click="deleteById(scope.row.id, scope.row.status)"
  207. ></i>
  208. </el-tooltip>
  209. </template>
  210. </ex-table>
  211. <add-edit
  212. :id="modelId"
  213. :show-model="showModel"
  214. :is-detail="isDetail"
  215. @refresh="searchList"
  216. @cancel="showModel = false"
  217. />
  218. </div>
  219. <div v-else>
  220. <no-auth></no-auth>
  221. </div>
  222. </div>
  223. </template>
  224. <script>
  225. import mixinPage from "@/mixins/elPaginationHandle";
  226. import resToken from "@/mixins/resToken";
  227. import asyncRequest from "@/apis/service/serviceParam/storeSet";
  228. import addEdit from "./addEdit";
  229. import { mapGetters } from "vuex";
  230. export default {
  231. name: "storeSet",
  232. mixins: [mixinPage, resToken],
  233. components: {
  234. addEdit,
  235. },
  236. computed: {
  237. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  238. powers() {
  239. let tran =
  240. this.$store.getters.btnList.find(
  241. (item) => item.menu_route == "storeSet"
  242. ) || {};
  243. if (tran && tran.action && tran.action.length > 0) {
  244. return tran.action;
  245. } else {
  246. return [];
  247. }
  248. },
  249. },
  250. data() {
  251. return {
  252. select: "1", //选择
  253. input: "",
  254. supplierNo: [], //供应商
  255. stock_sn: "", //企业/仓库编码
  256. stock_name: "", //企业/仓库名称
  257. link: "", //联系电话/联系人
  258. loading: true,
  259. showModel: false,
  260. isDetail: false,
  261. modelId: 0,
  262. parmValue: {
  263. supplierNo: "", //供应商编码
  264. wsm_code: "", //仓库编码
  265. start: "", //新建起始时间
  266. end: "", //新建结束时间
  267. mobile: "", //手机号
  268. contactor_name: "", //联系人
  269. },
  270. tableData: [],
  271. passwordModel: false,
  272. passwordModelId: 0,
  273. isPasswordDetail: false,
  274. // 表格 - 数据
  275. tableData: [],
  276. // 表格 - 参数
  277. table: {
  278. stripe: true,
  279. border: true,
  280. _defaultHeader_: ["setcol"],
  281. },
  282. // 表格 - 分页
  283. pageInfo: {
  284. size: 15,
  285. curr: 1,
  286. total: 0,
  287. },
  288. // 表格 - 列参数
  289. columns: [
  290. {
  291. prop: "wsm_code",
  292. label: "编号",
  293. width: "170px",
  294. },
  295. {
  296. prop: "name",
  297. label: "仓库名称",
  298. },
  299. {
  300. prop: "supplierNo",
  301. label: "供应商编号",
  302. width: "140px",
  303. },
  304. {
  305. prop: "supplier_name",
  306. label: "供应商公司",
  307. "min-width": "140px",
  308. },
  309. {
  310. prop: "status",
  311. label: "状态",
  312. width: "60px",
  313. // sortable: true,
  314. _slot_: "status",
  315. },
  316. {
  317. prop: "contactor_name",
  318. label: "负责人",
  319. width: "70px",
  320. },
  321. {
  322. prop: "mobile",
  323. label: "负责人电话",
  324. width: "100px",
  325. },
  326. {
  327. prop: "addtime",
  328. label: "创建时间",
  329. width: "140px",
  330. },
  331. {
  332. prop: "",
  333. label: "操作",
  334. width: "140px",
  335. fixed: "right",
  336. _noset_: true,
  337. _slot_: "operation",
  338. },
  339. ],
  340. // 状态
  341. statusOptions: [
  342. { id: "0", label: "禁用" },
  343. { id: "1", label: "启用" },
  344. ],
  345. };
  346. },
  347. mounted() {
  348. this.searchList();
  349. },
  350. methods: {
  351. supplierChange(e) {
  352. if (e && e.id) {
  353. this.supplierNo = [e.code];
  354. this.parmValue.supplierNo = e.code; //供应商编码
  355. } else {
  356. this.parmValue.supplierNo = "";
  357. this.supplierNo = [];
  358. }
  359. this.parmValue.page = 1;
  360. this.searchList();
  361. },
  362. stockChange(e) {
  363. if (e && e.id) {
  364. this.parmValue.wsm_code = e.code; //供应商编码
  365. } else {
  366. this.parmValue.wsm_code = "";
  367. }
  368. this.parmValue.page = 1;
  369. this.searchList();
  370. },
  371. addList(id) {
  372. window.vm.$router.push({
  373. path: "addStore",
  374. query: {
  375. id: id,
  376. },
  377. });
  378. },
  379. restSearch() {
  380. // 表格 - 分页
  381. this.pageInfo = {
  382. size: 15,
  383. curr: 1,
  384. total: 0,
  385. };
  386. this.supplierNo = [];
  387. this.input = "";
  388. this.select = "1";
  389. this.parmValue = {
  390. supplierNo: "", //供应商编码
  391. wsm_code: "", //仓库编码
  392. start: "", //新建起始时间
  393. end: "", //新建结束时间
  394. mobile: "", //手机号
  395. contactor_name: "", //联系人
  396. page: 1, // 页码
  397. size: 15, // 每页显示条数
  398. };
  399. this.searchList();
  400. },
  401. openModal(id, isDetail) {
  402. this.showModel = true;
  403. this.modelId = id;
  404. this.isDetail = isDetail;
  405. },
  406. async searchList() {
  407. if (
  408. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  409. (this.parmValue.start == "" && this.parmValue.end != "")
  410. ) {
  411. this.$message.warning("开始时间和结束时间不能为空");
  412. return;
  413. }
  414. this.loading = true;
  415. this.parmValue.wsm_code = this.select === "1" ? this.input : "";
  416. this.parmValue.contactor_name = this.select === "2" ? this.input : "";
  417. this.parmValue.mobile = this.select === "3" ? this.input : "";
  418. const res = await asyncRequest.list(this.parmValue);
  419. if (res && res.code === 0 && res.data) {
  420. console.log("aaaaaaaaaaaaaaaa",res)
  421. this.tableData = res.data.list;
  422. this.pageInfo.total = Number(res.data.count);
  423. } else if (res && res.code >= 100 && res.code <= 104) {
  424. await this.logout();
  425. } else {
  426. this.tableData = [];
  427. this.pageInfo.total = 0;
  428. }
  429. this.loading = false;
  430. },
  431. async statusConfirm(id, status) {
  432. let str = status === "1" ? "禁用" : "启用";
  433. await this.$confirm("确定要改为" + str + "?", {
  434. confirmButtonText: "确定",
  435. cancelButtonText: "取消",
  436. type: "warning",
  437. })
  438. .then(async () => {
  439. this.loading = true;
  440. const model = {
  441. id: id,
  442. status: status === "1" ? "0" : "1",
  443. };
  444. const res = await asyncRequest.status(model);
  445. if (res && res.code === 0) {
  446. this.loading = false;
  447. this.$notify.success({
  448. title: "状态修改成功!",
  449. message: "",
  450. });
  451. await this.searchList();
  452. } else if (res && res.code >= 100 && res.code <= 104) {
  453. await this.logout();
  454. } else {
  455. this.$message.warning(res.message);
  456. }
  457. })
  458. .catch(() => {
  459. console.log("取消");
  460. });
  461. },
  462. async deleteById(id, status) {
  463. if (status === "1") {
  464. this.$message.warning("正在启用的仓库不能删除!");
  465. return;
  466. }
  467. await this.$confirm("确定要删除?", {
  468. confirmButtonText: "确定",
  469. cancelButtonText: "取消",
  470. type: "warning",
  471. })
  472. .then(async () => {
  473. const model = {
  474. id: id,
  475. // status: status === "1" ? "0" : "1",
  476. };
  477. const res = await asyncRequest.delete(model);
  478. if (res && res.code === 0) {
  479. this.$notify.success({
  480. title: "删除成功",
  481. message: "",
  482. });
  483. this.searchList();
  484. } else if (res && res.code >= 100 && res.code <= 104) {
  485. await this.logout();
  486. } else {
  487. this.$message.warning(res.message);
  488. }
  489. })
  490. .catch(() => {
  491. console.log("取消");
  492. });
  493. },
  494. },
  495. };
  496. </script>
  497. <style lang="scss" scoped>
  498. </style>