indexPage.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  1. module.exports = function (inputName, compoenntName) {
  2. return `<template>
  3. <div class="${compoenntName} pagePadding">
  4. <div
  5. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  6. >
  7. <ex-table
  8. v-loading="loading"
  9. v-if="
  10. powers && powers.length > 0 && powers.some((item) => item == '001')
  11. "
  12. :table="table"
  13. :data="tableData"
  14. :columns="columns"
  15. :page="pageInfo"
  16. :size="size"
  17. @page-curr-change="handlePageChange"
  18. @page-size-change="handleSizeChange"
  19. @screen-reset="
  20. pageInfo.curr = 1;
  21. parmValue.page = 1;
  22. searchList();
  23. "
  24. @screen-submit="
  25. pageInfo.curr = 1;
  26. parmValue.page = 1;
  27. searchList();
  28. "
  29. >
  30. <template #table-header="{}">
  31. <div style="width: 100%">
  32. <el-row style="padding: 0 0 0 80px">
  33. <el-col :span="24">
  34. <el-col :span="4" style="width: 120px">
  35. <el-select
  36. :size="searchSize"
  37. v-model="parmValue.status"
  38. filterable
  39. clearable
  40. placeholder="账号状态"
  41. style="width: 100%"
  42. @change="
  43. pageInfo.curr = 1;
  44. parmValue.page = 1;
  45. searchList();
  46. "
  47. >
  48. <el-option
  49. v-for="item in statusList"
  50. :key="'status' + item.code"
  51. :label="item.name"
  52. :value="item.code"
  53. />
  54. </el-select>
  55. </el-col>
  56. <el-col :span="4" style="width: 150px; padding: 0 0 0 10px">
  57. <el-input
  58. :size="searchSize"
  59. v-model="parmValue.name"
  60. :maxlength="40"
  61. placeholder="业务员姓名"
  62. />
  63. </el-col>
  64. <el-col :span="4" style="width: 160px; padding: 0 0 0 10px">
  65. <el-input
  66. :size="searchSize"
  67. v-model="parmValue.username"
  68. :maxlength="40"
  69. placeholder="手机号"
  70. />
  71. </el-col>
  72. <el-col :span="4" style="width: 54px">
  73. <el-button
  74. :size="searchSize"
  75. type="primary"
  76. class="fr"
  77. icon="el-icon-search"
  78. @click="searchList"
  79. /></el-col>
  80. <el-col
  81. :span="4"
  82. style="width: 66px"
  83. v-if="powers.some((item) => item == '024')"
  84. >
  85. <el-button
  86. type="warning"
  87. class="fr"
  88. :size="searchSize"
  89. @click="restSearch"
  90. >
  91. 重置
  92. </el-button>
  93. </el-col>
  94. <el-col
  95. :span="3"
  96. style="width: 66px; float: right"
  97. v-if="powers.some((item) => item == '002')"
  98. >
  99. <el-button
  100. :size="searchSize"
  101. type="primary"
  102. style="float: right; margin-left: 5px"
  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. (statusOptions.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 == '020')"
  125. effect="dark"
  126. content="重置密码"
  127. placement="top"
  128. >
  129. <i
  130. class="el-icon-refresh-left tb-icon"
  131. @click="openPasswordModal(scope.row.id, false)"
  132. ></i>
  133. </el-tooltip>
  134. <el-tooltip
  135. v-if="powers.some((item) => item == '007')"
  136. effect="dark"
  137. content="详情"
  138. placement="top"
  139. >
  140. <i
  141. class="el-icon-view tb-icon"
  142. @click="openModal(scope.row.id, true, scope.row)"
  143. ></i>
  144. </el-tooltip>
  145. <el-tooltip
  146. v-if="powers.some((item) => item == '005')"
  147. effect="dark"
  148. content="修改"
  149. placement="top"
  150. >
  151. <i
  152. class="el-icon-edit tb-icon"
  153. @click="openModal(scope.row.id, false, scope.row)"
  154. ></i>
  155. </el-tooltip>
  156. <el-tooltip
  157. v-if="
  158. powers.some((item) => item == '004') && scope.row.status === '1'
  159. "
  160. effect="dark"
  161. content="禁用"
  162. placement="top"
  163. >
  164. <i
  165. class="el-icon-video-pause tb-icon"
  166. @click="statusConfirm(scope.row.id, scope.row.status)"
  167. ></i>
  168. </el-tooltip>
  169. <el-tooltip
  170. v-if="
  171. powers.some((item) => item == '004') && scope.row.status === '0'
  172. "
  173. effect="dark"
  174. content="启用"
  175. placement="top"
  176. >
  177. <i
  178. class="el-icon-video-play tb-icon"
  179. @click="statusConfirm(scope.row.id, scope.row.status)"
  180. ></i>
  181. </el-tooltip>
  182. </template>
  183. </ex-table>
  184. <add-edit
  185. :id="modelId"
  186. :sitem="sitem"
  187. :show-model="showModel"
  188. :is-detail="isDetail"
  189. @refresh="searchList"
  190. @cancel="showModel = false"
  191. />
  192. </div>
  193. <div v-else>
  194. <no-auth></no-auth>
  195. </div>
  196. <add-edit
  197. :showModel="showModel"
  198. :id="modelId"
  199. :isDetail="isDetail"
  200. @refresh="searchList"
  201. @cancel="showModel = false"
  202. ></add-edit>
  203. </div>
  204. </template>
  205. <script>
  206. import mixinPage from "@/mixins/elPaginationHandle";
  207. import resToken from "@/mixins/resToken";
  208. import ExTable from "@/components/ExTableNew.vue";
  209. import statusList from "@/assets/js/statusList";
  210. import asyncRequest from "@/apis/service/${inputName}";
  211. import addEdit from "./addEdit";
  212. import { mapGetters } from "vuex";
  213. export default {
  214. name: '${compoenntName}',
  215. mixins: [mixinPage, resToken],
  216. components: {
  217. addEdit,
  218. ExTable,
  219. },
  220. computed: {
  221. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  222. powers() {
  223. let tran =
  224. this.$store.getters.btnList.find(
  225. (item) => item.menu_route == "${compoenntName}"
  226. ) || {};
  227. if (tran && tran.action && tran.action.length > 0) {
  228. return tran.action;
  229. } else {
  230. return [];
  231. }
  232. },
  233. },
  234. data() {
  235. return {
  236. sitem: null,
  237. // 状态
  238. statusOptions: [
  239. { id: "0", label: "禁用" },
  240. { id: "1", label: "启用" },
  241. ],
  242. statusList: statusList,
  243. loading: true,
  244. showModel: false,
  245. isDetail: false,
  246. modelId: 0,
  247. parmValue: {
  248. name: "", // 业务员名字
  249. username: "", // 账号
  250. status: "", //
  251. page: 1, // 页码
  252. size: 15, // 每页显示条数
  253. },
  254. tableData: [],
  255. passwordModel: false,
  256. passwordModelId: 0,
  257. isPasswordDetail: false,
  258. // 表格 - 数据
  259. tableData: [],
  260. // 表格 - 参数
  261. table: {
  262. stripe: true,
  263. border: true,
  264. _defaultHeader_: ["setcol"],
  265. },
  266. // 表格 - 分页
  267. pageInfo: {
  268. size: 15,
  269. curr: 1,
  270. total: 0,
  271. },
  272. // 表格 - 列参数
  273. columns: [
  274. {
  275. prop: "nickname",
  276. label: "真实姓名",
  277. },
  278. {
  279. prop: "role_name",
  280. label: "角色名称",
  281. },
  282. {
  283. prop: "mobile",
  284. label: "联系电话",
  285. },
  286. {
  287. prop: "email",
  288. label: "邮箱",
  289. },
  290. {
  291. prop: "status",
  292. label: "状态",
  293. _slot_: "status",
  294. width: "80px",
  295. },
  296. {
  297. prop: "addtime",
  298. label: "创建时间",
  299. sortable: true,
  300. },
  301. {
  302. prop: "",
  303. label: "操作",
  304. fixed: "right",
  305. _noset_: true,
  306. _slot_: "operation",
  307. },
  308. ],
  309. };
  310. },
  311. mixins: [mixinPage],
  312. mounted() {
  313. this.searchList();
  314. },
  315. components: {
  316. addEdit
  317. },
  318. methods: {
  319. restSearch() {
  320. this.parmValue = {
  321. name: "", // 业务员名字
  322. username: "", // 账号
  323. status: "", //
  324. page: 1, // 页码
  325. size: 10, // 每页显示条数
  326. };
  327. this.searchList();
  328. },
  329. openModal(id, isDetail, sitem) {
  330. this.showModel = true;
  331. this.modelId = id;
  332. this.isDetail = isDetail;
  333. this.sitem = sitem;
  334. },
  335. async deleteById(id, status) {
  336. await this.$confirm("确定要删除?", {
  337. confirmButtonText: "确定",
  338. cancelButtonText: "取消",
  339. type: "warning",
  340. })
  341. .then(async () => {
  342. const model = {
  343. id: id,
  344. status: status === "1" ? "0" : "1",
  345. };
  346. const res = await asyncRequest.status(model);
  347. if (res && res.code === 0) {
  348. this.$notify.success({
  349. title: "删除成功",
  350. message: "",
  351. });
  352. this.searchList();
  353. } else if (res && res.code >= 100 && res.code <= 104) {
  354. await this.logout();
  355. } else {
  356. this.$message.warning(res.message);
  357. }
  358. })
  359. .catch(() => {
  360. console.log("取消");
  361. });
  362. },
  363. async searchList() {
  364. this.loading = true;
  365. const res = await asyncRequest.list(this.parmValue);
  366. if (res && res.code === 0 && res.data) {
  367. this.tableData = res.data.list;
  368. this.pageInfo.total = Number(res.data.count);
  369. } else if (res && res.code >= 100 && res.code <= 104) {
  370. await this.logout();
  371. } else {
  372. this.tableData = [];
  373. this.pageInfo.total = 0;
  374. }
  375. this.loading = false;
  376. },
  377. async statusConfirm(id, status) {
  378. let str= status === "1" ? "禁用" : "启用"
  379. await this.$confirm('确定要改为'+str+'?',{
  380. confirmButtonText: "确定",
  381. cancelButtonText: "取消",
  382. type: "warning",
  383. })
  384. .then(async () => {
  385. this.loading = true;
  386. const model = {
  387. id: id,
  388. status: status === "1" ? "0" : "1",
  389. };
  390. const res = await asyncRequest.status(model);
  391. if (res && res.code === 0) {
  392. this.loading = false;
  393. this.$notify.success({
  394. title: "状态修改成功!",
  395. message: "",
  396. });
  397. await this.searchList();
  398. } else if (res && res.code >= 100 && res.code <= 104) {
  399. await this.logout();
  400. } else {
  401. this.$message.warning(res.message);
  402. }
  403. })
  404. .catch(() => {
  405. console.log("取消");
  406. });
  407. },
  408. }
  409. }
  410. </script>
  411. <style lang="scss" scoped>
  412. .${compoenntName} {
  413. }
  414. </style>
  415. `;
  416. };