index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. <template>
  2. <div class="survey 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%" class="min">
  28. <el-row style="padding: 0 0 0 80px">
  29. <el-col :span="24">
  30. <!-- 请选择仓库 -->
  31. <el-col :span="5" style="width: 160px">
  32. <el-select
  33. :size="searchSize"
  34. v-model="parmValue.status"
  35. filterable
  36. clearable
  37. placeholder="请选择仓库"
  38. style="width: 100%"
  39. @change="
  40. pageInfo.curr = 1;
  41. parmValue.page = 1;
  42. searchList();
  43. "
  44. >
  45. <el-option
  46. v-for="item in stock"
  47. :key="item.id"
  48. :label="`${item.name} ${item.id}`"
  49. :value="item.id"
  50. />
  51. </el-select>
  52. </el-col>
  53. <!-- 商品编码 -->
  54. <el-col :span="4" style="width: 160px; padding: 0 0 0 10px">
  55. <el-input
  56. style="width: 100%"
  57. :size="searchSize"
  58. v-model="parmValue.name"
  59. :maxlength="40"
  60. placeholder="商品编码"
  61. />
  62. </el-col>
  63. <!-- 库存量 -->
  64. <el-col :span="6" style="width: 352px; padding: 0 0 0 20px">
  65. <number-range
  66. :start="parmValue.total_low"
  67. :end="parmValue.total_up"
  68. :type="1"
  69. :width="'150px'"
  70. :title="'库存量开始'"
  71. :size="searchSize"
  72. @numReturned="numReturned($event, 0)"
  73. />
  74. </el-col>
  75. <!-- 预警库存量 -->
  76. <el-col :span="6" style="width: 352px; padding: 0 0 0 20px">
  77. <number-range
  78. :start="parmValue.total_low"
  79. :end="parmValue.total_up"
  80. :type="1"
  81. :width="'135px'"
  82. :title="'预警量'"
  83. :size="searchSize"
  84. @numReturned="numReturned($event, 0)"
  85. />
  86. </el-col>
  87. <el-col :span="4" style="width: 74px">
  88. <el-button
  89. :size="searchSize"
  90. type="primary"
  91. class="fr"
  92. icon="el-icon-search"
  93. label=""
  94. @click="searchList"
  95. >搜索</el-button
  96. >
  97. </el-col>
  98. <el-col :span="4" style="width: 74px; margin-left: 10px">
  99. <el-button
  100. :size="searchSize"
  101. class="fr"
  102. icon="el-icon-refresh-right"
  103. @click="searchList"
  104. >重置</el-button
  105. >
  106. </el-col>
  107. <!-- <el-col
  108. :span="4"
  109. style="width: 66px"
  110. v-if="powers.some((item) => item == '024')"
  111. >
  112. <el-button
  113. type="warning"
  114. class="fr"
  115. :size="searchSize"
  116. @click="restSearch"
  117. >
  118. 重置
  119. </el-button>
  120. </el-col>
  121. <el-col
  122. :span="3"
  123. style="width: 66px; float: right"
  124. v-if="powers.some((item) => item == '002')"
  125. >
  126. <el-button
  127. :size="searchSize"
  128. type="primary"
  129. style="float: right; margin-left: 5px"
  130. @click="searchList"
  131. >
  132. 刷新
  133. </el-button>
  134. </el-col> -->
  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 == '020')"
  152. effect="dark"
  153. content="重置密码"
  154. placement="top"
  155. >
  156. <i
  157. class="el-icon-refresh-left tb-icon"
  158. @click="openPasswordModal(scope.row.id, false)"
  159. ></i>
  160. </el-tooltip>
  161. <el-tooltip
  162. v-if="powers.some((item) => item == '007')"
  163. effect="dark"
  164. content="详情"
  165. placement="top"
  166. >
  167. <i
  168. class="el-icon-view tb-icon"
  169. @click="openModal(scope.row.id, true, scope.row)"
  170. ></i>
  171. </el-tooltip>
  172. <el-tooltip
  173. v-if="powers.some((item) => item == '005')"
  174. effect="dark"
  175. content="修改"
  176. placement="top"
  177. >
  178. <i
  179. class="el-icon-edit tb-icon"
  180. @click="openModal(scope.row.id, false, scope.row)"
  181. ></i>
  182. </el-tooltip>
  183. <el-tooltip
  184. v-if="
  185. powers.some((item) => item == '004') && scope.row.status === '1'
  186. "
  187. effect="dark"
  188. content="禁用"
  189. placement="top"
  190. >
  191. <i
  192. class="el-icon-video-pause tb-icon"
  193. @click="statusConfirm(scope.row.id, scope.row.status)"
  194. ></i>
  195. </el-tooltip>
  196. <el-tooltip
  197. v-if="
  198. powers.some((item) => item == '004') && scope.row.status === '0'
  199. "
  200. effect="dark"
  201. content="启用"
  202. placement="top"
  203. >
  204. <i
  205. class="el-icon-video-play tb-icon"
  206. @click="statusConfirm(scope.row.id, scope.row.status)"
  207. ></i>
  208. </el-tooltip>
  209. </template>
  210. </ex-table>
  211. <add-edit
  212. :id="modelId"
  213. :sitem="sitem"
  214. :show-model="showModel"
  215. :is-detail="isDetail"
  216. @refresh="searchList"
  217. @cancel="showModel = false"
  218. />
  219. </div>
  220. <div v-else>
  221. <no-auth></no-auth>
  222. </div>
  223. <add-edit
  224. :showModel="showModel"
  225. :id="modelId"
  226. :isDetail="isDetail"
  227. @refresh="searchList"
  228. @cancel="showModel = false"
  229. ></add-edit>
  230. </div>
  231. </template>
  232. <script>
  233. import mixinPage from "@/mixins/elPaginationHandle";
  234. import resToken from "@/mixins/resToken";
  235. import ExTable from "@/components/ExTableNew.vue";
  236. import statusList from "@/assets/js/statusList";
  237. import asyncRequest from "@/apis/service/stock/survey";
  238. import addEdit from "./addEdit";
  239. import { mapGetters } from "vuex";
  240. import numberRange from "@/components/numberRange";
  241. export default {
  242. name: "survey",
  243. mixins: [mixinPage, resToken],
  244. components: {
  245. addEdit,
  246. ExTable,
  247. numberRange,
  248. },
  249. computed: {
  250. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  251. powers() {
  252. let tran =
  253. this.$store.getters.btnList.find(
  254. (item) => item.menu_route == "survey"
  255. ) || {};
  256. if (tran && tran.action && tran.action.length > 0) {
  257. return tran.action;
  258. } else {
  259. return [];
  260. }
  261. },
  262. },
  263. data() {
  264. return {
  265. // 状态
  266. // statusOptions: [
  267. // { id: "0", label: "禁用" },
  268. // { id: "1", label: "启用" },
  269. // ],
  270. stock: [
  271. { id: "1", name: "自建仓" },
  272. { id: "2", name: "自建仓" },
  273. { id: "1", name: "部门仓" },
  274. { id: "2", name: "部门仓" },
  275. ],
  276. sitem: null,
  277. statusList: statusList,
  278. loading: true,
  279. showModel: false,
  280. isDetail: false,
  281. modelId: 0,
  282. parmValue: {
  283. stock_sn: "", // 商品编码
  284. stock_start: 0, //库存量开始
  285. stock_end: 0, //库存量结束
  286. stockWarn_start: 0, //预警量开始
  287. stockWarn_end: 0, //预警量结束
  288. status: "", //
  289. page: 1, // 页码
  290. size: 15, // 每页显示条数
  291. },
  292. tableData: [],
  293. passwordModel: false,
  294. passwordModelId: 0,
  295. isPasswordDetail: false,
  296. // 表格 - 数据
  297. tableData: [],
  298. // 表格 - 参数
  299. table: {
  300. stripe: true,
  301. border: true,
  302. _defaultHeader_: ["setcol"],
  303. },
  304. // 表格 - 分页
  305. pageInfo: {
  306. size: 15,
  307. curr: 1,
  308. total: 0,
  309. },
  310. // 表格 - 列参数
  311. columns: [
  312. {
  313. prop: "products_sn",
  314. label: "商品编码",
  315. },
  316. {
  317. prop: "product_name",
  318. label: "商品名称",
  319. },
  320. {
  321. prop: "prop_name",
  322. label: "属性名称",
  323. },
  324. {
  325. prop: "classify",
  326. label: "分类",
  327. },
  328. {
  329. prop: "unit",
  330. label: "单位",
  331. },
  332. {
  333. prop: "stock_able",
  334. label: "可用库存",
  335. },
  336. {
  337. prop: "stock_warning",
  338. label: "预警库存",
  339. },
  340. ],
  341. };
  342. },
  343. mounted() {
  344. this.searchList();
  345. },
  346. methods: {
  347. restSearch() {
  348. this.parmValue = {
  349. name: "", // 业务员名字
  350. username: "", // 账号
  351. status: "", //
  352. page: 1, // 页码
  353. size: 10, // 每页显示条数
  354. };
  355. this.searchList();
  356. },
  357. openModal(id, isDetail, sitem) {
  358. this.showModel = true;
  359. this.modelId = id;
  360. this.isDetail = isDetail;
  361. this.sitem = sitem;
  362. },
  363. async deleteById(id, status) {
  364. await this.$confirm("确定要删除?", {
  365. confirmButtonText: "确定",
  366. cancelButtonText: "取消",
  367. type: "warning",
  368. })
  369. .then(async () => {
  370. const model = {
  371. id: id,
  372. status: status === "1" ? "0" : "1",
  373. };
  374. const res = await asyncRequest.status(model);
  375. if (res && res.code === 0) {
  376. this.$notify.success({
  377. title: "删除成功",
  378. message: "",
  379. });
  380. this.searchList();
  381. } else if (res && res.code >= 100 && res.code <= 104) {
  382. await this.logout();
  383. } else {
  384. this.$message.warning(res.message);
  385. }
  386. })
  387. .catch(() => {
  388. console.log("取消");
  389. });
  390. },
  391. async searchList() {
  392. this.loading = true;
  393. const res = await asyncRequest.list(this.parmValue);
  394. if (res && res.code === 0 && res.data) {
  395. this.tableData = res.data.list;
  396. this.pageInfo.total = Number(res.data.count);
  397. } else if (res && res.code >= 100 && res.code <= 104) {
  398. await this.logout();
  399. } else {
  400. this.tableData = [];
  401. this.pageInfo.total = 0;
  402. }
  403. this.loading = false;
  404. },
  405. async statusConfirm(id, status) {
  406. let str = status === "1" ? "禁用" : "启用";
  407. await this.$confirm("确定要改为" + str + "?", {
  408. confirmButtonText: "确定",
  409. cancelButtonText: "取消",
  410. type: "warning",
  411. })
  412. .then(async () => {
  413. this.loading = true;
  414. const model = {
  415. id: id,
  416. status: status === "1" ? "0" : "1",
  417. };
  418. const res = await asyncRequest.status(model);
  419. if (res && res.code === 0) {
  420. this.loading = false;
  421. this.$notify.success({
  422. title: "状态修改成功!",
  423. message: "",
  424. });
  425. await this.searchList();
  426. } else if (res && res.code >= 100 && res.code <= 104) {
  427. await this.logout();
  428. } else {
  429. this.$message.warning(res.message);
  430. }
  431. })
  432. .catch(() => {
  433. console.log("取消");
  434. });
  435. },
  436. },
  437. };
  438. </script>
  439. <style lang="scss" scoped>
  440. .survey {
  441. }
  442. .to {
  443. float: left;
  444. height: 32px;
  445. line-height: 32px;
  446. padding-left: 6px;
  447. }
  448. .min {
  449. min-width: 1600px;
  450. }
  451. /**
  452. import numberRange from "@/components/numberRange";
  453. */
  454. </style>