index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. <template>
  2. <div class="stock pagePadding">
  3. <tableAuth :show="powers.some((item) => item == '001')" >
  4. <ex-table
  5. v-loading="loading"
  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. searchList();
  16. "
  17. @screen-submit="
  18. pageInfo.curr = 1;
  19. searchList();
  20. "
  21. >
  22. <template #table-header="{}">
  23. <div style="width: 100%">
  24. <el-row>
  25. <el-col :span="24">
  26. <el-col :span="4" style="width: 115px">
  27. <el-select
  28. :size="searchSize"
  29. v-model="parmValue.status"
  30. filterable
  31. clearable
  32. placeholder="订单状态"
  33. style="width: 100%"
  34. >
  35. <el-option
  36. v-for="item in statusList"
  37. :key="'status' + item.id"
  38. :label="item.label"
  39. :value="item.id"
  40. />
  41. </el-select>
  42. </el-col>
  43. <el-col :span="4" style="width: 312px; padding: 0 0 0 10px">
  44. <numBerRange
  45. :lower="parmValue.stock_low"
  46. :online="parmValue.stock_up"
  47. :type="1"
  48. :title="'可用库存'"
  49. :size="searchSize"
  50. :width="'140px'"
  51. @numReturned="numReturned($event)"
  52. />
  53. </el-col>
  54. <el-col :span="4" style="width: 318px; padding: 0 0 0 10px">
  55. <el-input
  56. :size="searchSize"
  57. v-model="input"
  58. :maxlength="40"
  59. placeholder="关键字"
  60. >
  61. <el-select
  62. v-model="select"
  63. slot="prepend"
  64. style="width: 95px"
  65. placeholder="请选择"
  66. >
  67. <el-option
  68. v-for="(item, index) in selectList"
  69. :label="item.name"
  70. :value="item.code"
  71. :key="index + 'se'"
  72. ></el-option>
  73. </el-select>
  74. <el-button
  75. slot="append"
  76. icon="el-icon-search"
  77. @click.native="searchList"
  78. ></el-button>
  79. </el-input>
  80. </el-col>
  81. <el-col
  82. :span="4"
  83. style="width: 80px; padding: 0 0 0 10px"
  84. v-if="powers.some((item) => item == '008')"
  85. >
  86. <el-button
  87. type="warning"
  88. :size="searchSize"
  89. @click="restSearch"
  90. >
  91. 重置
  92. </el-button>
  93. </el-col>
  94. <el-col
  95. :span="3"
  96. v-if="powers.some((item) => item == '002')"
  97. style="width: 80px; padding: 0 0 0 10px; float: right"
  98. >
  99. <el-button
  100. :size="searchSize"
  101. type="primary"
  102. style="float: right"
  103. @click="searchList"
  104. >
  105. 刷新
  106. </el-button>
  107. </el-col>
  108. </el-col>
  109. </el-row>
  110. </div>
  111. </template>
  112. <template #status="{ scope }">
  113. <el-tag
  114. :size="tablebtnSize"
  115. :type="scope.row.status == '0' ? 'warning' : ''"
  116. v-text="
  117. (statusList.find((item) => item.id == scope.row.status) || {})
  118. .label || '--'
  119. "
  120. ></el-tag>
  121. </template>
  122. <template #operation="{ scope }">
  123. <el-tooltip
  124. v-if="powers.some((item) => item == '005')"
  125. class="item"
  126. effect="dark"
  127. content="修改"
  128. placement="top"
  129. >
  130. <i
  131. class="el-icon-edit tb-icon"
  132. @click="openModal(scope.row, true)"
  133. ></i>
  134. </el-tooltip>
  135. <el-tooltip
  136. v-if="powers.some((item) => item == '010')"
  137. class="item"
  138. effect="dark"
  139. content="修改记录"
  140. placement="top"
  141. >
  142. <i
  143. class="el-icon-data-analysis tb-icon"
  144. @click="openModal(scope.row.id, false)"
  145. ></i>
  146. </el-tooltip>
  147. </template>
  148. </ex-table>
  149. </tableAuth>
  150. <!-- 弹窗 新增/修改 -->
  151. <add-edit
  152. :id="modelId"
  153. :show-model="showModel"
  154. @refresh="searchList"
  155. @cancel="showModel = false"
  156. />
  157. <!-- 库存修改记录 -->
  158. <edit-record
  159. :id="modelId"
  160. :show-model="showRecordModel"
  161. @refresh="showRecordModel = false"
  162. @cancel="showRecordModel = false"
  163. />
  164. </div>
  165. </template>
  166. <script>
  167. import ExTable from "@/components/ExTableNew.vue";
  168. import addEdit from "./addEdit";
  169. import editRecord from "./editRecord";
  170. import asyncRequest from "@/apis/service/mobile/stock";
  171. import mixinPage from "@/mixins/elPaginationHandle";
  172. import resToken from "@/mixins/resToken";
  173. import { mapGetters } from "vuex";
  174. import numBerRange from "@/components/numberRange";
  175. export default {
  176. name: "stock",
  177. mixins: [mixinPage, resToken],
  178. components: {
  179. ExTable,
  180. addEdit,
  181. numBerRange,
  182. editRecord,
  183. },
  184. computed: {
  185. //组件SIZE设置
  186. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  187. powers() {
  188. let tran =
  189. this.$store.getters.btnList.find(
  190. (item) => item.menu_route == "stock"
  191. ) || {};
  192. if (tran && tran.action && tran.action.length > 0) {
  193. return tran.action;
  194. } else {
  195. return [];
  196. }
  197. },
  198. },
  199. data() {
  200. return {
  201. selectList: [
  202. { code: "1", name: "账号" },
  203. { code: "2", name: "姓名" },
  204. { code: "3", name: "手机号" },
  205. ],
  206. select: "1",
  207. input: "",
  208. loading: true,
  209. showModel: false,
  210. showRecordModel:false,
  211. modelId: 0,
  212. parmValue: {
  213. username: "", // 账户名
  214. nickname: "", // 用户名
  215. status: "", //
  216. mobile: "",
  217. stock_low: "",
  218. stock_up: "",
  219. page: 1, // 页码
  220. size: 15, // 每页显示条数
  221. },
  222. // 状态
  223. statusList: [
  224. { id: "0", label: "未激活" },
  225. { id: "1", label: "已激活" },
  226. { id: "2", label: "已过期" },
  227. ],
  228. // 表格 - 数据
  229. tableData: [],
  230. // 表格 - 参数
  231. table: {
  232. stripe: true,
  233. border: true,
  234. // _defaultHeader_: ["setcol"]
  235. },
  236. // 表格 - 分页
  237. pageInfo: {
  238. size: 15,
  239. curr: 1,
  240. total: 0,
  241. },
  242. // 表格 - 列参数
  243. columns: [
  244. {
  245. prop: "id",
  246. label: "账户ID",
  247. width: "60",
  248. },
  249. {
  250. prop: "username",
  251. label: "账户名",
  252. },
  253. {
  254. prop: "status",
  255. label: "账户状态",
  256. _slot_: "status",
  257. },
  258. {
  259. prop: "nickname",
  260. label: "用户名",
  261. },
  262. {
  263. prop: "mobile",
  264. label: "联系方式",
  265. },
  266. {
  267. prop: "stock_balance",
  268. label: "可用库存",
  269. },
  270. {
  271. prop: "stock_update",
  272. label: "库存更新时间",
  273. sortable: true,
  274. width: "140",
  275. },
  276. {
  277. prop: "",
  278. label: "操作",
  279. fixed: "right",
  280. _noset_: true,
  281. _slot_: "operation",
  282. },
  283. ],
  284. };
  285. },
  286. mounted() {
  287. this.select = "1";
  288. this.input = "";
  289. this.searchList();
  290. },
  291. methods: {
  292. restSearch() {
  293. this.select = "1";
  294. this.input = "";
  295. // 表格 - 分页
  296. this.pageInfo = {
  297. size: 15,
  298. curr: 1,
  299. total: 0,
  300. };
  301. this.parmValue = {
  302. username: "", // 账户名
  303. nickname: "", // 用户名
  304. status: "", //
  305. mobile: "",
  306. stock_low: "",
  307. stock_up: "",
  308. page: 1, // 页码
  309. size: 15, // 每页显示条数
  310. };
  311. this.searchList();
  312. },
  313. // 新建/编辑/详情
  314. openModal(id, isDetail) {
  315. this.modelId = id;
  316. // this.showRecordModel = true;
  317. if (isDetail == true) {
  318. this.showModel = true;
  319. } else {
  320. this.showRecordModel = true;
  321. }
  322. },
  323. async numReturned(e) {
  324. this.parmValue.stock_low = e.lower;
  325. this.parmValue.stock_up = e.online;
  326. },
  327. // 刷新表格
  328. async searchList() {
  329. this.loading = true;
  330. this.parmValue.username = this.select === "1" ? this.input : "";
  331. this.parmValue.nickname = this.select === "2" ? this.input : "";
  332. this.parmValue.mobile = this.select === "3" ? this.input : "";
  333. const {code,data,message} = await asyncRequest.list(this.parmValue);
  334. if (code === 0) {
  335. const {list,count}=data
  336. this.tableData = list;
  337. this.tableData.forEach((v1) => {
  338. v1.stock_balance += "kg";
  339. });
  340. this.pageInfo.total = Number(count);
  341. } else if (code >= 100 && code <= 104) {
  342. await this.logout();
  343. } else {
  344. this.tableData = [];
  345. this.pageInfo.total = 0;
  346. }
  347. this.loading = false;
  348. },
  349. },
  350. };
  351. </script>
  352. <style lang="scss" scoped>
  353. </style>