home.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  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. </div>
  69. <!--删除弹框-->
  70. <Dialog :flag="flag">
  71. <div class="airportInfoDialog">
  72. <div class="title del-title">删除权限</div>
  73. <div class="Delcontent">
  74. <div class="content del-content">
  75. <span class="DelIcon"></span>是否确认删除<span class="error l10">{{ title }}</span>?
  76. </div>
  77. <div class="Delfoot text-right t30">
  78. <el-button size="default" type="danger" @click="remove">删除</el-button>
  79. <el-button size="default" @click="flag = false">取消</el-button>
  80. </div>
  81. </div>
  82. </div>
  83. </Dialog>
  84. <!--新增/编辑-->
  85. <Dialog :flag="editDialogVisible" width="628px" :show-flag="true">
  86. <div class="airportInfoDialog dialog-public-background">
  87. <div class="title">{{ editDialogTitle }}</div>
  88. <div class="content">
  89. <el-form ref="ruleFormRef" :model="ruleForm" :rules="rules" label-width="110px" class="demo-ruleForm">
  90. <el-form-item label="权限名称" prop="auth_name">
  91. <el-input v-model="ruleForm.auth_name" size="default" placeholder="请输入权限名称" />
  92. </el-form-item>
  93. <div class="flex">
  94. <el-form-item label="权限类型" prop="auth_type">
  95. <el-select v-model="ruleForm.auth_type" size="default" placeholder="请选择">
  96. <el-option v-for="(item, index) in optionsType" :key="index" :label="item.label" :value="item.value"> </el-option>
  97. </el-select>
  98. </el-form-item>
  99. <el-form-item label="父级权限" prop="authParent">
  100. <el-select v-model="ruleForm.auth_id" size="default" placeholder="请选择">
  101. <el-option v-for="(item, index) in optionsParent" :key="index" :label="item.label" :value="item.value"> </el-option>
  102. </el-select>
  103. </el-form-item>
  104. </div>
  105. <div class="flex-wrap">
  106. <el-form-item class="flex1" label="所属应用" prop="app_name">
  107. <el-select v-model="ruleForm.app_name" style="display: block" size="default" placeholder="请选择">
  108. <el-option v-for="(item, index) in optionsApp" :key="index" :label="item.label" :value="item.value"> </el-option>
  109. </el-select>
  110. </el-form-item>
  111. </div>
  112. <el-form-item label="权限标识符" prop="auth_ident">
  113. <el-input v-model="ruleForm.auth_ident" size="default" type="textarea" :rows="3" placeholder="请输入权限标识符" />
  114. </el-form-item>
  115. <el-form-item label="数据项描述" prop="auth_comment">
  116. <el-input v-model="ruleForm.auth_comment" size="default" type="textarea" :rows="3" placeholder="请输入数据项描述" />
  117. </el-form-item>
  118. </el-form>
  119. </div>
  120. <div class="foot text-right t30">
  121. <el-button size="default" type="primary" class="r25 r26" @click="submitForm(ruleFormRef)">提交</el-button>
  122. <el-button size="default" class="r26" @click="resetForm(ruleFormRef)">取消</el-button>
  123. </div>
  124. </div>
  125. </Dialog>
  126. </template>
  127. <script setup lang="ts">
  128. import { ref, reactive } from "vue";
  129. import { CloseBold } from "@element-plus/icons-vue";
  130. import Dialog from "@/components/dialog/index.vue";
  131. import { ElMessage, FormInstance, FormRules } from "element-plus";
  132. interface Tree {
  133. label: string;
  134. children?: Tree[];
  135. }
  136. //下级权限数据
  137. const childrenData = ref([]);
  138. //默认展开
  139. const currentKey = ref([-1]);
  140. //权限树
  141. const data: Tree[] = [
  142. {
  143. auth_name: "应用名称",
  144. auth_id: -1,
  145. auth_type: -1,
  146. QueryTarget: -1,
  147. auth_status: true,
  148. children: [
  149. {
  150. auth_name: "交互权限",
  151. auth_id: 1,
  152. auth_type: 1,
  153. QueryTarget: 1,
  154. auth_status: true,
  155. },
  156. {
  157. auth_name: "API接口",
  158. auth_id: 2,
  159. auth_type: 1,
  160. QueryTarget: 1,
  161. auth_status: true,
  162. },
  163. {
  164. auth_name: "数据读写",
  165. auth_id: 3,
  166. auth_type: 1,
  167. QueryTarget: 1,
  168. auth_status: true,
  169. },
  170. ],
  171. },
  172. ];
  173. //删除弹框
  174. const flag = ref(false);
  175. //新增编辑弹框
  176. const editDialogVisible = ref(false);
  177. //删除弹框标题
  178. const title = ref("");
  179. //删除id
  180. const auId = ref("");
  181. //新增编辑弹框-标题
  182. const editDialogTitle = ref("新增下级权限");
  183. //新增编辑弹框-表单
  184. const ruleForm = reactive({
  185. auth_name: "",
  186. auth_type: "",
  187. auth_comment: "",
  188. app_name: "",
  189. auth_ident: "",
  190. auth_type: "",
  191. app_name: "",
  192. app_id: "",
  193. auth_status: true,
  194. });
  195. const optionsType = ref([]);
  196. const optionsParent = ref([]);
  197. const optionsApp = ref([]);
  198. const ruleFormRef = ref<FormInstance>();
  199. const rules = reactive<FormRules>({
  200. auth_name: [{ required: true, message: "请输入权限名称", trigger: "blur" }],
  201. });
  202. const defaultProps = {
  203. children: "children",
  204. label: "auth_name",
  205. };
  206. //权限树点击
  207. const handleNodeClick = (data: Tree) => {
  208. if (data.children) {
  209. childrenData.value = data.children;
  210. } else {
  211. childrenData.value = [];
  212. }
  213. };
  214. //启用禁用
  215. const renderChange = (data) => {
  216. console.log(data);
  217. };
  218. //修改
  219. const renderEdit = (data) => {
  220. console.log(data);
  221. };
  222. //删除弹框
  223. const onNodeClick = (data) => {
  224. flag.value = true;
  225. title.value = data.auth_name;
  226. auId.value = data.auth_id;
  227. };
  228. //删除
  229. const remove = () => {
  230. const datas = childrenData.value;
  231. datas.filter((item, index) => {
  232. if (item.auth_id == auId.value) {
  233. datas.splice(index, 1);
  234. }
  235. });
  236. flag.value = false;
  237. ElMessage.success("删除成功");
  238. };
  239. //新增
  240. const addAuth = () => {
  241. editDialogVisible.value = true;
  242. };
  243. const submitForm = async (formEl: FormInstance | undefined) => {
  244. if (!formEl) return;
  245. await formEl.validate((valid, fields) => {
  246. if (valid) {
  247. console.log("submit!");
  248. editDialogVisible.value = false;
  249. } else {
  250. console.log("error submit!", fields);
  251. }
  252. });
  253. };
  254. const resetForm = (formEl: FormInstance | undefined) => {
  255. if (!formEl) return;
  256. formEl.resetFields();
  257. editDialogVisible.value = false;
  258. };
  259. </script>
  260. <style lang="scss" scoped>
  261. .permission {
  262. &-head {
  263. line-height: 35px;
  264. font-size: 14px;
  265. margin-bottom: 30px;
  266. .icon {
  267. width: 14px;
  268. height: 14px;
  269. background: #58c274;
  270. border-radius: 2px;
  271. display: inline-block;
  272. vertical-align: middle;
  273. margin-right: 10px;
  274. position: relative;
  275. top: -2px;
  276. }
  277. &:last-child {
  278. margin-right: 0;
  279. }
  280. .status2 {
  281. margin-left: 28px;
  282. .icon {
  283. background: #2d67e3;
  284. }
  285. }
  286. .status0 {
  287. margin-right: 28px;
  288. .icon {
  289. background: #d8b53b;
  290. }
  291. }
  292. }
  293. &-content {
  294. height: calc(100% - 65px);
  295. &-tree {
  296. width: 504px;
  297. height: 100%;
  298. margin-right: 24px;
  299. .contentTree {
  300. margin-top: 30px;
  301. }
  302. }
  303. &-card {
  304. height: 100%;
  305. flex: 1;
  306. }
  307. }
  308. .account-left-content-teams {
  309. position: relative;
  310. margin-top: 24px;
  311. .info-close {
  312. position: absolute;
  313. width: 24px;
  314. height: 24px;
  315. line-height: 24px;
  316. text-align: center;
  317. background: #000000;
  318. border-radius: 50%;
  319. top: -12px;
  320. right: -12px;
  321. z-index: 5;
  322. cursor: pointer;
  323. .icon {
  324. color: #fff;
  325. font-weight: 600;
  326. width: 12px;
  327. height: 12px;
  328. }
  329. }
  330. .list {
  331. background-color: #f5f7fa;
  332. .info {
  333. line-height: normal;
  334. margin-bottom: 37px;
  335. .name {
  336. font-size: 16px;
  337. font-weight: bold;
  338. max-width: 120px;
  339. white-space: nowrap;
  340. overflow: hidden;
  341. text-overflow: ellipsis;
  342. }
  343. .cap {
  344. width: 16px;
  345. height: 16px;
  346. display: inline-block;
  347. background-repeat: no-repeat;
  348. background-size: 100%;
  349. transition: all 0.3s;
  350. margin-left: 16px;
  351. &:first-child {
  352. margin-right: 0;
  353. }
  354. }
  355. .cap-plus {
  356. background-image: url("@/assets/status/ic_plus.png");
  357. &:hover {
  358. background-image: url("@/assets/status/ic_plus_hovar.png");
  359. }
  360. }
  361. .cap-edit {
  362. background-image: url("@/assets/status/ic_edit_default.png");
  363. &:hover {
  364. background-image: url("@/assets/status/ic_edit_hovar.png");
  365. }
  366. }
  367. .cap-sub {
  368. background-image: url("@/assets/status/ic_permissions_add_default.png");
  369. &:hover {
  370. background-image: url("@/assets/status/ic_permissions_add_hoavr.png");
  371. }
  372. }
  373. .cap-job {
  374. background-image: url("@/assets/status/ic_jobs.png");
  375. &:hover {
  376. background-image: url("@/assets/status/ic_jobs_hovar.png");
  377. }
  378. }
  379. .cap-member {
  380. background-image: url("@/assets/status/ic_member.png");
  381. &:hover {
  382. background-image: url("@/assets/status/ic_member_hovar.png");
  383. }
  384. }
  385. }
  386. }
  387. .team {
  388. background: #fff;
  389. border-radius: 4px;
  390. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  391. overflow: hidden;
  392. .bg {
  393. height: 4px;
  394. background: #6f81bc;
  395. }
  396. .status0 {
  397. background: #d8b53b;
  398. }
  399. .status1 {
  400. background: #58c274;
  401. }
  402. .status2 {
  403. background: #2d67e3;
  404. }
  405. }
  406. .list {
  407. padding: 23px 24px;
  408. position: relative;
  409. min-width: 240px;
  410. min-height: 118px;
  411. .info {
  412. margin-bottom: 20px;
  413. .info-avoutr {
  414. display: flex;
  415. .avoutr {
  416. width: 40px;
  417. height: 40px;
  418. border-radius: 50%;
  419. background: #303133;
  420. img {
  421. max-width: 100%;
  422. }
  423. }
  424. .msg {
  425. margin-left: 20px;
  426. p {
  427. margin: 0;
  428. padding: 0;
  429. height: 20px;
  430. line-height: 20px;
  431. }
  432. .name {
  433. font-weight: bold;
  434. color: #303133;
  435. font-size: 18px;
  436. margin-bottom: 8px;
  437. }
  438. .group {
  439. font-size: 14px;
  440. font-family: Microsoft YaHei;
  441. font-weight: 400;
  442. color: #303133;
  443. }
  444. }
  445. }
  446. .icon {
  447. font-size: 16px;
  448. cursor: pointer;
  449. }
  450. }
  451. .time,
  452. .ip {
  453. height: 16px;
  454. line-height: 16px;
  455. font-size: 16px;
  456. .glr {
  457. color: #909399;
  458. }
  459. }
  460. .ip {
  461. margin-top: 23px;
  462. margin-bottom: 38px;
  463. }
  464. .details {
  465. height: 24px;
  466. line-height: 24px;
  467. font-size: 14px;
  468. .success {
  469. color: #2d67e3;
  470. }
  471. .error {
  472. color: #909399;
  473. }
  474. }
  475. }
  476. }
  477. }
  478. </style>