index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. <template>
  2. <div class="permission scroll-y">
  3. <div class="permission-head rowSS">
  4. <div class="manageTitle">权限项管理</div>
  5. <div class="status0"><span class="icon"></span>交互权限</div>
  6. <div class="status1"><span class="icon"></span>API接口</div>
  7. <div class="status2"><span class="icon"></span>数据读写</div>
  8. </div>
  9. <div class="permission-content rowSS">
  10. <div class="permission-content-tree box">
  11. <div class="manageTitle">权限树</div>
  12. <div class="contentTree">
  13. <el-tree :data="data" :props="defaultProps" node-key="auth_id" highlight-current :default-expanded-keys="currentKey" :expand-on-click-node="false" @node-click="handleNodeClick" />
  14. </div>
  15. </div>
  16. <div class="permission-content-card box">
  17. <div class="grid-contentBottom">
  18. <div class="capTitle rowBS">
  19. <div class="manageTitle">下级权限</div>
  20. <div class="btn-create">
  21. <el-button size="default" plain class="btn-white" @click="addAuth">新增</el-button>
  22. </div>
  23. </div>
  24. <div class="content">
  25. <template v-if="childrenData.length">
  26. <el-row :gutter="24">
  27. <el-col v-for="data in childrenData" :key="data.auth_id" :span="6">
  28. <div class="account-left-content-teams">
  29. <div class="team">
  30. <div class="bg" :class="data.auth_type == 1 ? 'status0' : data.auth_type == 2 ? 'status1' : 'status2'"></div>
  31. <div class="list" :class="data.QueryTarget == 1 ? 'activeStatus' : ''">
  32. <div class="rowBS info">
  33. <div :title="data.auth_name" class="name">
  34. {{ data.auth_name }}
  35. </div>
  36. <div v-if="data.auth_type > 0" class="icon">
  37. <el-tooltip effect="dark" :content="`修改${data.auth_name}`" placement="bottom">
  38. <span class="cap cap-edit" @click="renderEdit(data)"></span>
  39. </el-tooltip>
  40. </div>
  41. </div>
  42. <div v-if="data.auth_type > 0" class="rowBS details">
  43. <div class="details-msg">
  44. 状态:<span :class="data.auth_status ? 'success' : 'error'">{{ data.auth_status ? "启用" : "禁用" }}</span>
  45. </div>
  46. <div class="details-info">
  47. <el-switch v-model="data.auth_status" active-color="#AC014D" @change="renderChange(data)"> </el-switch>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <div>
  53. <div v-if="data.auth_type !== 0" class="info-close" @click.stop="onNodeClick(data)">
  54. <CloseBold class="icon" :class="data.auth_type === 1 ? 'close1' : data.auth_type > 2 ? 'close2' : ''" />
  55. </div>
  56. </div>
  57. </div>
  58. </el-col>
  59. </el-row>
  60. </template>
  61. <template v-else>
  62. <el-empty description="暂无数据" />
  63. </template>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. <!--删除弹框-->
  69. <Dialog :flag="flag" msgTitle="删除权限" type="del" :delName="title" @delRest="delRest" @delRemove="remove" />
  70. <!--新增/编辑-->
  71. <Dialog :flag="editDialogVisible" :msg-title="editDialogTitle" @submitForm="submitForm(ruleFormRef)" @reset-form="resetForm(ruleFormRef)" width="628px" :show-flag="true">
  72. <el-form ref="ruleFormRef" :model="ruleForm" :rules="rules" label-width="110px" class="demo-ruleForm">
  73. <el-form-item label="权限名称" prop="auth_name">
  74. <el-input v-model="ruleForm.auth_name" size="default" placeholder="请输入权限名称" />
  75. </el-form-item>
  76. <div class="flex">
  77. <el-form-item label="权限类型" prop="auth_type">
  78. <el-select v-model="ruleForm.auth_type" size="default" placeholder="请选择">
  79. <el-option v-for="(item, index) in optionsType" :key="index" :label="item.label" :value="item.value"> </el-option>
  80. </el-select>
  81. </el-form-item>
  82. <el-form-item label="父级权限" prop="authParent">
  83. <el-select v-model="ruleForm.auth_id" size="default" placeholder="请选择">
  84. <el-option v-for="(item, index) in optionsParent" :key="index" :label="item.label" :value="item.value"> </el-option>
  85. </el-select>
  86. </el-form-item>
  87. </div>
  88. <el-form-item class="flex1" label="所属应用" prop="app_name">
  89. <el-select v-model="ruleForm.app_name" style="display: block" size="default" placeholder="请选择">
  90. <el-option v-for="(item, index) in optionsApp" :key="index" :label="item.label" :value="item.value"> </el-option>
  91. </el-select>
  92. </el-form-item>
  93. <el-form-item label="权限标识符" prop="auth_ident">
  94. <el-input v-model="ruleForm.auth_ident" size="default" type="textarea" :rows="3" placeholder="请输入权限标识符" />
  95. </el-form-item>
  96. <el-form-item label="数据项描述" prop="auth_comment">
  97. <el-input v-model="ruleForm.auth_comment" size="default" type="textarea" :rows="3" placeholder="请输入数据项描述" />
  98. </el-form-item>
  99. </el-form>
  100. </Dialog>
  101. </div>
  102. </template>
  103. <script setup lang="ts">
  104. import { ref, reactive, onBeforeMount } from "vue";
  105. import { CloseBold } from "@element-plus/icons-vue";
  106. import Dialog from "@/components/dialog/index.vue";
  107. import { ElMessage, FormInstance, FormRules } from "element-plus";
  108. import { translateDataToTreeAll } from "@/utils/validate";
  109. import { GeneralDataReception, Query } from "@/api/dataIntegration";
  110. import * as _ from "lodash";
  111. //当前选中数据
  112. const currData = ref({});
  113. //当前要删除的数据
  114. const delObj = ref({});
  115. //下级权限数据
  116. const childrenData = ref([]);
  117. //默认展开
  118. const currentKey = ref([-1]);
  119. //权限树
  120. const data = ref([]);
  121. //删除弹框
  122. const flag = ref(false);
  123. //新增编辑弹框
  124. const editDialogVisible = ref(false);
  125. //新增编辑类型
  126. const editType = ref("add");
  127. //删除弹框标题
  128. const title = ref("");
  129. //删除id
  130. const auId = ref("");
  131. //新增编辑弹框-标题
  132. const editDialogTitle = ref("新增下级权限");
  133. //新增编辑弹框-表单
  134. const ruleForm = ref({
  135. auth_name: "",
  136. auth_type: "",
  137. auth_comment: "",
  138. app_name: "",
  139. auth_ident: "",
  140. app_id: "",
  141. auth_status: true,
  142. });
  143. const optionsType = ref([
  144. {
  145. label: "前端权限",
  146. value: 1,
  147. },
  148. {
  149. label: "API权限",
  150. value: 2,
  151. },
  152. {
  153. label: "数据权限",
  154. value: 3,
  155. },
  156. ]);
  157. const optionsParent: any = ref([]);
  158. const optionsApp: any = ref([]);
  159. const ruleFormRef = ref<FormInstance>();
  160. const rules = reactive<FormRules>({
  161. auth_name: [{ required: true, message: "请输入权限名称", trigger: "blur" }],
  162. });
  163. const defaultProps = {
  164. children: "children",
  165. label: "auth_name",
  166. };
  167. //获取权限树数据
  168. const getAuthTree = async () => {
  169. try {
  170. const { returnData, code } = await Query({
  171. id: DATACONTENT_ID.authTreeNewId,
  172. dataContent: [sessionStorage.getItem("User_Id")],
  173. });
  174. if (code == 0 && returnData.listValues) {
  175. const obj = {
  176. auth_id: -1,
  177. auth_name: "所有权限",
  178. auth_status: true,
  179. up_auth_id: -1,
  180. auth_type: 0,
  181. disabled: true,
  182. children: translateDataToTreeAll(
  183. returnData.listValues,
  184. "up_auth_id",
  185. "auth_id"
  186. ),
  187. };
  188. data.value = [obj];
  189. } else {
  190. const obj = {
  191. auth_id: -1,
  192. auth_name: "所有权限",
  193. auth_status: true,
  194. up_auth_id: -1,
  195. auth_type: 0,
  196. disabled: true,
  197. children: [],
  198. };
  199. }
  200. data.value = [obj];
  201. } catch (error) {}
  202. };
  203. onBeforeMount(() => {
  204. getAuthTree();
  205. });
  206. //权限树点击
  207. const handleNodeClick = (data) => {
  208. if (data.children) {
  209. const newData = _.cloneDeep(data);
  210. currData.value = newData;
  211. childrenData.value = newData.children;
  212. } else {
  213. childrenData.value = [];
  214. }
  215. };
  216. //启用禁用
  217. const renderChange = (data) => {
  218. console.log(data);
  219. };
  220. //修改
  221. const renderEdit = (data) => {
  222. optionsApp.value = [];
  223. optionsParent.value = [];
  224. editDialogVisible.value = true;
  225. editDialogTitle.value = "编辑下级权限";
  226. editType.value = "edit";
  227. ruleForm.value = _.cloneDeep(data);
  228. optionsApp.value.push({
  229. label: data.app_name,
  230. value: data.app_id,
  231. });
  232. optionsParent.value.push({
  233. label: currData.value.auth_name,
  234. value: data.auth_id,
  235. });
  236. };
  237. const delRest = () => {
  238. flag.value = false;
  239. };
  240. //删除弹框
  241. const onNodeClick = (data) => {
  242. flag.value = true;
  243. title.value = data.auth_name;
  244. auId.value = data.auth_id;
  245. delObj.value = data;
  246. };
  247. //删除
  248. const remove = () => {
  249. delObj.value.event = 3;
  250. changeAuth(delObj.value, "del");
  251. /* const datas = childrenData.value;
  252. datas.filter((item, index) => {
  253. if (item.auth_id == auId.value) {
  254. datas.splice(index, 1);
  255. }
  256. });
  257. flag.value = false;
  258. ElMessage.success("删除成功");*/
  259. };
  260. //判断对象是否为空
  261. const isEmptyObj = (obj: object) => Object.keys(obj).length === 0;
  262. //新增
  263. const addAuth = () => {
  264. if (isEmptyObj(currData.value)) {
  265. ElMessage.error("请选择权限后再操作");
  266. return false;
  267. }
  268. optionsApp.value = [];
  269. optionsParent.value = [];
  270. editDialogVisible.value = true;
  271. editDialogTitle.value = "新增下级权限";
  272. editType.value = "add";
  273. optionsApp.value.push({
  274. label: currData.value.app_name,
  275. value: currData.value.app_id,
  276. });
  277. optionsParent.value.push({
  278. label: currData.value.auth_name,
  279. value: currData.value.auth_id,
  280. });
  281. };
  282. //增删改
  283. const changeAuth = async (obj, type) => {
  284. const { code, message } = await GeneralDataReception({
  285. serviceId: SERVICE_ID.authScId,
  286. dataContent: JSON.stringify(obj),
  287. });
  288. if (code == 0) {
  289. ElMessage.success(message);
  290. getAuthTree();
  291. } else {
  292. ElMessage.error(message);
  293. }
  294. if (type == "form") {
  295. // ruleForm.value = {};
  296. editDialogVisible.value = false;
  297. } else if (type == "del") {
  298. flag.value = false;
  299. }
  300. };
  301. const submitForm = async (formEl: FormInstance | undefined) => {
  302. if (!formEl) return;
  303. await formEl.validate((valid, fields) => {
  304. if (valid) {
  305. if (editType.value == "add") {
  306. ruleForm.value.app_id = ruleForm.value.app_name;
  307. ruleForm.value.app_name = currData.value.app_name;
  308. ruleForm.value.auth_status = true;
  309. ruleForm.value.event = 1;
  310. if (ruleForm.value.auth_id) {
  311. ruleForm.value.up_auth_id = ruleForm.value.auth_id;
  312. delete ruleForm.value.auth_id;
  313. }
  314. changeAuth(ruleForm.value, "form");
  315. } else {
  316. ruleForm.value.event = 2;
  317. changeAuth(ruleForm.value, "form");
  318. }
  319. editDialogVisible.value = false;
  320. } else {
  321. console.log("error submit!", fields);
  322. }
  323. });
  324. };
  325. const resetForm = (formEl: FormInstance | undefined) => {
  326. if (!formEl) return;
  327. formEl.resetFields();
  328. editDialogVisible.value = false;
  329. };
  330. </script>
  331. <style lang="scss" scoped>
  332. .permission {
  333. &-head {
  334. line-height: 35px;
  335. font-size: 14px;
  336. margin-bottom: 30px;
  337. .icon {
  338. width: 14px;
  339. height: 14px;
  340. background: #58c274;
  341. border-radius: 2px;
  342. display: inline-block;
  343. vertical-align: middle;
  344. margin-right: 10px;
  345. position: relative;
  346. top: -2px;
  347. }
  348. &:last-child {
  349. margin-right: 0;
  350. }
  351. .status2 {
  352. margin-left: 28px;
  353. .icon {
  354. background: #2d67e3;
  355. }
  356. }
  357. .status0 {
  358. margin-right: 28px;
  359. .icon {
  360. background: #d8b53b;
  361. }
  362. }
  363. }
  364. &-content {
  365. height: calc(100% - 65px);
  366. &-tree {
  367. width: 504px;
  368. height: 100%;
  369. margin-right: 24px;
  370. .contentTree {
  371. margin-top: 30px;
  372. }
  373. }
  374. &-card {
  375. height: 100%;
  376. flex: 1;
  377. }
  378. }
  379. .account-left-content-teams {
  380. position: relative;
  381. margin-top: 24px;
  382. .info-close {
  383. position: absolute;
  384. width: 24px;
  385. height: 24px;
  386. line-height: 24px;
  387. text-align: center;
  388. background: #000000;
  389. border-radius: 50%;
  390. top: -12px;
  391. right: -12px;
  392. z-index: 5;
  393. cursor: pointer;
  394. .icon {
  395. color: #fff;
  396. font-weight: 600;
  397. width: 12px;
  398. height: 12px;
  399. }
  400. }
  401. .list {
  402. background-color: #f5f7fa;
  403. .info {
  404. line-height: normal;
  405. margin-bottom: 37px;
  406. .name {
  407. font-size: 16px;
  408. font-weight: bold;
  409. max-width: 120px;
  410. white-space: nowrap;
  411. overflow: hidden;
  412. text-overflow: ellipsis;
  413. }
  414. .cap {
  415. width: 16px;
  416. height: 16px;
  417. display: inline-block;
  418. background-repeat: no-repeat;
  419. background-size: 100%;
  420. transition: all 0.3s;
  421. margin-left: 16px;
  422. &:first-child {
  423. margin-right: 0;
  424. }
  425. }
  426. .cap-plus {
  427. background-image: url("@/assets/status/ic_plus.png");
  428. &:hover {
  429. background-image: url("@/assets/status/ic_plus_hovar.png");
  430. }
  431. }
  432. .cap-edit {
  433. background-image: url("@/assets/status/ic_edit_default.png");
  434. &:hover {
  435. background-image: url("@/assets/status/ic_edit_hovar.png");
  436. }
  437. }
  438. .cap-sub {
  439. background-image: url("@/assets/status/ic_permissions_add_default.png");
  440. &:hover {
  441. background-image: url("@/assets/status/ic_permissions_add_hoavr.png");
  442. }
  443. }
  444. .cap-job {
  445. background-image: url("@/assets/status/ic_jobs.png");
  446. &:hover {
  447. background-image: url("@/assets/status/ic_jobs_hovar.png");
  448. }
  449. }
  450. .cap-member {
  451. background-image: url("@/assets/status/ic_member.png");
  452. &:hover {
  453. background-image: url("@/assets/status/ic_member_hovar.png");
  454. }
  455. }
  456. }
  457. }
  458. .team {
  459. background: #fff;
  460. border-radius: 4px;
  461. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  462. overflow: hidden;
  463. .bg {
  464. height: 4px;
  465. background: #6f81bc;
  466. }
  467. .status0 {
  468. background: #d8b53b;
  469. }
  470. .status1 {
  471. background: #58c274;
  472. }
  473. .status2 {
  474. background: #2d67e3;
  475. }
  476. }
  477. .list {
  478. padding: 23px 24px;
  479. position: relative;
  480. min-width: 240px;
  481. min-height: 118px;
  482. .info {
  483. margin-bottom: 20px;
  484. .info-avoutr {
  485. display: flex;
  486. .avoutr {
  487. width: 40px;
  488. height: 40px;
  489. border-radius: 50%;
  490. background: #303133;
  491. img {
  492. max-width: 100%;
  493. }
  494. }
  495. .msg {
  496. margin-left: 20px;
  497. p {
  498. margin: 0;
  499. padding: 0;
  500. height: 20px;
  501. line-height: 20px;
  502. }
  503. .name {
  504. font-weight: bold;
  505. color: #303133;
  506. font-size: 18px;
  507. margin-bottom: 8px;
  508. }
  509. .group {
  510. font-size: 14px;
  511. font-family: Microsoft YaHei;
  512. font-weight: 400;
  513. color: #303133;
  514. }
  515. }
  516. }
  517. .icon {
  518. font-size: 16px;
  519. cursor: pointer;
  520. }
  521. }
  522. .time,
  523. .ip {
  524. height: 16px;
  525. line-height: 16px;
  526. font-size: 16px;
  527. .glr {
  528. color: #909399;
  529. }
  530. }
  531. .ip {
  532. margin-top: 23px;
  533. margin-bottom: 38px;
  534. }
  535. .details {
  536. height: 24px;
  537. line-height: 24px;
  538. font-size: 14px;
  539. .success {
  540. color: #2d67e3;
  541. }
  542. .error {
  543. color: #909399;
  544. }
  545. }
  546. }
  547. }
  548. }
  549. </style>