index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. <template>
  2. <div class="setBtn">
  3. <div class="processPermission_show_box" v-if="powers.some((i) => i == '001')">
  4. <ul class="role-list fl" v-loading="menuLoading">
  5. <p class="role-list__title">菜单列表</p>
  6. <p
  7. v-if="menuTableData.length == 0"
  8. style="line-height: 60px; text-align: center; color: #909399"
  9. >
  10. 暂无数据
  11. </p>
  12. <el-tree
  13. :data="menuTableData"
  14. accordion
  15. :props="defaultProps"
  16. :current-node-key="keyId"
  17. @node-click="handleNodeClick"
  18. ></el-tree>
  19. </ul>
  20. <div class="rule-view fr">
  21. <ex-table
  22. v-loading="loading"
  23. v-if="powers.some((i) => i == '001')"
  24. :table="table"
  25. :data="tableData"
  26. :columns="columns"
  27. :page="pageInfo"
  28. :size="size"
  29. @page-curr-change="handlePageChange"
  30. @page-size-change="handleSizeChange"
  31. @screen-reset="
  32. pageInfo.curr = 1;
  33. searchList();
  34. "
  35. @screen-submit="
  36. pageInfo.curr = 1;
  37. searchList();
  38. "
  39. >
  40. <template #table-header="{}">
  41. <div style="width: 100%; padding: 0 0 0 80px">
  42. <el-row>
  43. <el-col :span="24">
  44. <el-col :span="3" style="width: 66px; float: right">
  45. <el-button
  46. type="primary"
  47. :size="searchSize"
  48. style="float: right"
  49. @click="searchList"
  50. >
  51. 刷新
  52. </el-button>
  53. </el-col>
  54. <el-col
  55. :span="3"
  56. style="width: 66px; float: right"
  57. v-if="powers.some((i) => i == '003')"
  58. >
  59. <el-button
  60. :size="searchSize"
  61. type="success"
  62. style="float: right"
  63. @click="openModal('add', {})"
  64. >
  65. 添加
  66. </el-button>
  67. </el-col>
  68. </el-col>
  69. </el-row>
  70. </div>
  71. </template>
  72. <template #status="{ scope }">
  73. <el-tag
  74. :size="tablebtnSize"
  75. :type="scope.row.status == '0' ? 'warning' : ''"
  76. v-text="
  77. (statusOptions.find((item) => item.id == scope.row.status) || {}).label ||
  78. '--'
  79. "
  80. ></el-tag>
  81. </template>
  82. <template #operation="{ scope }">
  83. <el-tooltip
  84. v-if="powers.some((i) => i == '007')"
  85. effect="dark"
  86. content="详情"
  87. placement="top"
  88. >
  89. <i class="el-icon-view tb-icon" @click="openModal('view', scope.row)"></i>
  90. </el-tooltip>
  91. <el-tooltip
  92. v-if="powers.some((i) => i == '005')"
  93. effect="dark"
  94. content="修改"
  95. placement="top"
  96. >
  97. <i class="el-icon-edit tb-icon" @click="openModal('edit', scope.row)"></i>
  98. </el-tooltip>
  99. <el-tooltip
  100. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '1'"
  101. effect="dark"
  102. content="禁用"
  103. placement="top"
  104. >
  105. <i
  106. class="el-icon-video-pause tb-icon"
  107. @click="changeStatus(scope.row.id, scope.row.status)"
  108. ></i>
  109. </el-tooltip>
  110. <el-tooltip
  111. v-if="powers.some((i) => i == '004') && scope.row.status + '' === '0'"
  112. effect="dark"
  113. content="启用"
  114. placement="top"
  115. >
  116. <i
  117. class="el-icon-video-play tb-icon"
  118. @click="changeStatus(scope.row.id, scope.row.status)"
  119. ></i>
  120. </el-tooltip>
  121. <el-tooltip
  122. v-if="powers.some((i) => i == '006')"
  123. effect="dark"
  124. content="删除"
  125. placement="top"
  126. >
  127. <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.id)"></i>
  128. </el-tooltip>
  129. </template>
  130. </ex-table>
  131. </div>
  132. <add-edit
  133. :show-model="showModel"
  134. :form-data="formData"
  135. :type="modelType"
  136. @refresh="searchList"
  137. @cancel="showModel = false"
  138. />
  139. </div>
  140. <div v-else>
  141. <no-auth></no-auth>
  142. </div>
  143. </div>
  144. </template>
  145. <script>
  146. import mixinPage from "@/mixins/elPaginationHandle";
  147. import asyncRequest from "@/apis/service/system/menu";
  148. import addEdit from "@/views/system/setBtn/addEdit";
  149. import resToken from "@/mixins/resToken";
  150. import { mapGetters } from "vuex";
  151. export default {
  152. name: "setBtn",
  153. components: {
  154. addEdit,
  155. },
  156. mixins: [mixinPage, resToken],
  157. computed: {
  158. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  159. powers() {
  160. const { btnList } = this.$store.getters;
  161. const tran = btnList.find((item) => item.menu_route == "setBtn") || {};
  162. const { action } = tran ?? {};
  163. return action ?? [];
  164. },
  165. },
  166. data() {
  167. return {
  168. defaultProps: {
  169. children: "child",
  170. label: "menu_name",
  171. },
  172. keyId: "",
  173. // 状态
  174. statusOptions: [
  175. { id: 0, label: "禁用" },
  176. { id: 1, label: "启用" },
  177. ],
  178. menuLoading: true,
  179. loading: true,
  180. showModel: false,
  181. showInterface: false,
  182. isDetail: false,
  183. isAdd: true,
  184. level: 1,
  185. modelType: 0,
  186. formData: {},
  187. parentIds: "",
  188. parmValue: {
  189. parentId: 0, // 父级Id
  190. code: "", // 编码
  191. status: "", // 状态(1启用 2禁用)
  192. type: 1, // 类型(1.运营菜单 2.物业菜单)
  193. menuCategory: "", // 菜单类别(1.导航菜单 2.按钮)
  194. current: 1, // 页码
  195. size: 15, // 每页显示条数
  196. },
  197. menuTableData: [],
  198. tableData: [],
  199. // 表格 - 参数
  200. table: {
  201. stripe: true,
  202. border: true,
  203. _defaultHeader_: ["setcol"],
  204. },
  205. pageInfo: {
  206. size: 15,
  207. curr: 1,
  208. total: 0,
  209. },
  210. // 表格 - 列参数
  211. columns: [
  212. {
  213. prop: "id",
  214. label: "ID",
  215. },
  216. {
  217. prop: "action_name",
  218. label: "按钮名称",
  219. },
  220. {
  221. prop: "action_code",
  222. label: "按钮编号",
  223. },
  224. {
  225. prop: "status",
  226. label: "状态",
  227. _slot_: "status",
  228. },
  229. {
  230. prop: "addtime",
  231. label: "创建时间",
  232. },
  233. {
  234. prop: "",
  235. label: "操作",
  236. fixed: "right",
  237. width: "160px",
  238. _slot_: "operation",
  239. },
  240. ],
  241. };
  242. },
  243. mounted() {
  244. this.getMenuList();
  245. },
  246. methods: {
  247. async getMenuList() {
  248. this.menuLoading = true;
  249. const { code, data } = await asyncRequest.list({});
  250. this.menuTableData = [];
  251. if (code === 0) {
  252. this.menuTableData = data;
  253. } else if (code >= 100 && code <= 104) {
  254. await this.logout();
  255. } else {
  256. this.menuTableData = [];
  257. }
  258. this.menuLoading = false;
  259. if (this.menuTableData.length > 0) {
  260. this.handleNodeClick(this.menuTableData[0], 1);
  261. } else {
  262. this.tableData = [];
  263. this.loading = false;
  264. }
  265. },
  266. async handleNodeClick(data, type) {
  267. const { id, pid, child } = data;
  268. if (Number(pid) !== 0) {
  269. this.keyId = id;
  270. await this.searchList();
  271. } else {
  272. if (type === 1 && child.length > 0) {
  273. this.keyId = child[0].id;
  274. await this.searchList();
  275. }
  276. }
  277. },
  278. openModal(type, formData) {
  279. if (type == "add") {
  280. this.formData = { menuid: this.keyId };
  281. } else {
  282. this.formData = formData;
  283. }
  284. this.modelType = type;
  285. this.showModel = true;
  286. },
  287. async changeStatus(id, status) {
  288. await this.$confirm(`确定要${status + "" === "0" ? "启用" : "禁用"}?`, {
  289. confirmButtonText: "确定",
  290. cancelButtonText: "取消",
  291. type: "warning",
  292. })
  293. .then(async () => {
  294. const model = {
  295. id: String(id ?? ""),
  296. status: String(status ?? "") === "1" ? "0" : "1",
  297. };
  298. const { code, message } = await asyncRequest.actionstatus(model);
  299. if (code === 0) {
  300. this.$notify.success({
  301. title: "修改成功!",
  302. message: "",
  303. });
  304. await this.searchList();
  305. } else if (code >= 100 && code <= 104) {
  306. await this.logout();
  307. } else {
  308. this.$message.warning(message);
  309. }
  310. })
  311. .catch(() => {
  312. console.log("取消");
  313. });
  314. },
  315. async deleteItem(id, parentIds, level, status) {
  316. await this.$confirm(`确定要删除?`, {
  317. confirmButtonText: "确定",
  318. cancelButtonText: "取消",
  319. type: "warning",
  320. })
  321. .then(async () => {
  322. const model = {
  323. id: id,
  324. };
  325. let res = await asyncRequest.actiondel(model);
  326. if (res && res.code === 0) {
  327. this.$notify.success({
  328. title: "删除成功!",
  329. message: "",
  330. });
  331. await this.searchList();
  332. } else if (res && res.code >= 100 && res.code <= 104) {
  333. await this.logout();
  334. }
  335. })
  336. .catch(() => {
  337. console.log("取消");
  338. });
  339. },
  340. async searchList() {
  341. this.loading = true;
  342. const res = await asyncRequest.actionList({ id: this.keyId });
  343. this.tableData = [];
  344. if (res && res.code === 0 && res.data) {
  345. this.tableData = res.data;
  346. } else if (res && res.code >= 100 && res.code <= 104) {
  347. await this.logout();
  348. } else {
  349. this.tableData = [];
  350. }
  351. this.loading = false;
  352. },
  353. },
  354. };
  355. </script>
  356. <style lang="scss" scoped>
  357. @import "~@/styles/mixin.scss";
  358. .setBtn {
  359. position: relative;
  360. height: 100%;
  361. width: 100%;
  362. box-sizing: border-box;
  363. overflow: hidden;
  364. .processPermission_show_box {
  365. // position: relative;
  366. // height: calc(100% - 50px);
  367. // min-height: calc(100% - 50px);
  368. display: relative;
  369. width: 100%;
  370. height: calc(100vh - 50px);
  371. overflow: hidden;
  372. text-align: left;
  373. //左侧
  374. .role-list {
  375. height: 100%;
  376. overflow-y: auto;
  377. width: 300px;
  378. padding: 8px 16px;
  379. min-height: 100%;
  380. flex-shrink: 0;
  381. border-right: 2px solid #dfe6ec;
  382. @include scrollBar();
  383. &::after {
  384. content: "";
  385. position: absolute;
  386. top: 0;
  387. right: 0;
  388. height: 100%;
  389. width: 2px;
  390. background-color: #e4e7ed;
  391. z-index: 1;
  392. }
  393. .role-list__title {
  394. color: #b4b6c0;
  395. line-height: 32px;
  396. }
  397. .role-list__item {
  398. position: relative;
  399. white-space: nowrap;
  400. text-overflow: ellipsis;
  401. overflow: hidden;
  402. height: 32px;
  403. line-height: 32px;
  404. padding-left: 8px;
  405. color: rgb(48, 49, 51);
  406. cursor: pointer;
  407. i {
  408. position: absolute;
  409. right: 0;
  410. line-height: 32px;
  411. }
  412. }
  413. .role-list__item.active {
  414. color: #6954f0;
  415. background: #f7f7f7;
  416. }
  417. }
  418. //右侧
  419. .rule-view {
  420. height: 100%;
  421. //calc(100% - 50px);
  422. width: calc(100% - 300px);
  423. overflow-y: auto;
  424. padding: 0 16px;
  425. @include scrollBar();
  426. .rule-list {
  427. border-right: 1px solid #dfe6ec;
  428. .title {
  429. padding: 18px 18px 12px 18px;
  430. border-bottom: 1px dashed #dfe6ec;
  431. font-size: 15px;
  432. color: #000;
  433. }
  434. .main {
  435. padding: 18px 18px 12px 18px;
  436. border-bottom: 1px solid #dfe6ec;
  437. }
  438. .main-title {
  439. width: 80px;
  440. }
  441. .main-item {
  442. width: calc(100% - 80px);
  443. }
  444. }
  445. }
  446. .rule-bottom {
  447. padding: 10px 18px 8px 0;
  448. background: #fff;
  449. width: calc(100% - 200px);
  450. position: absolute;
  451. text-align: right;
  452. bottom: 0;
  453. right: 0;
  454. &::before {
  455. content: "";
  456. position: absolute;
  457. top: 0;
  458. right: 0;
  459. height: 2px;
  460. width: 100%;
  461. background-color: #e4e7ed;
  462. z-index: 1;
  463. }
  464. }
  465. }
  466. .setBtn-main {
  467. position: relative;
  468. height: 100%;
  469. width: 100%;
  470. box-sizing: border-box;
  471. .setBtn-search {
  472. position: absolute;
  473. top: 0;
  474. left: 0;
  475. width: 100%;
  476. z-index: 2;
  477. background: #fff;
  478. }
  479. .setBtn-show {
  480. position: relative;
  481. height: 100%;
  482. padding: 40px 0 0 0;
  483. overflow-y: scroll;
  484. }
  485. }
  486. }
  487. </style>