index.vue 14 KB

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