indexPage.js 11 KB

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