home.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  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 @click="addAuth" class="btn-white">新增</el-button>
  22. </div>
  23. </div>
  24. <div class="content">
  25. <template v-if="childrenData.length">
  26. <el-row :gutter="24">
  27. <el-col :span="6" v-for="data in childrenData" :key="data.auth_id">
  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 @click="renderEdit(data)" class="cap cap-edit"></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" @change="renderChange(data)" active-color="#AC014D"> </el-switch>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <div>
  53. <div v-if="data.auth_type !== 0" @click.stop="onNodeClick(data)" class="info-close">
  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="foot Delfoot text-right t30">
  78. <el-button size="medium" class="r24" @click="remove" type="danger">删除</el-button>
  79. <el-button size="medium" @click="flag = false">取消</el-button>
  80. </div>
  81. </div>
  82. </div>
  83. </Dialog>
  84. </template>
  85. <script setup lang="ts">
  86. import { ref } from "vue";
  87. import { CloseBold } from "@element-plus/icons-vue";
  88. import Dialog from "@/components/dialog/index.vue";
  89. import { ElMessage } from "element-plus";
  90. interface Tree {
  91. label: string;
  92. children?: Tree[];
  93. }
  94. //下级权限数据
  95. const childrenData = ref([]);
  96. //默认展开
  97. const currentKey = ref([-1]);
  98. //权限树
  99. const data: Tree[] = [
  100. {
  101. auth_name: "应用名称",
  102. auth_id: -1,
  103. auth_type: -1,
  104. QueryTarget: -1,
  105. auth_status: true,
  106. children: [
  107. {
  108. auth_name: "交互权限",
  109. auth_id: 1,
  110. auth_type: 1,
  111. QueryTarget: 1,
  112. auth_status: true,
  113. },
  114. {
  115. auth_name: "API接口",
  116. auth_id: 2,
  117. auth_type: 1,
  118. QueryTarget: 1,
  119. auth_status: true,
  120. },
  121. {
  122. auth_name: "数据读写",
  123. auth_id: 3,
  124. auth_type: 1,
  125. QueryTarget: 1,
  126. auth_status: true,
  127. },
  128. ],
  129. },
  130. ];
  131. //删除弹框
  132. const flag = ref(false);
  133. //删除弹框标题
  134. const title = ref("");
  135. //删除id
  136. const auId = ref("");
  137. const defaultProps = {
  138. children: "children",
  139. label: "auth_name",
  140. };
  141. //权限树点击
  142. const handleNodeClick = (data: Tree) => {
  143. if (data.children) {
  144. childrenData.value = data.children;
  145. } else {
  146. childrenData.value = [];
  147. }
  148. };
  149. //启用禁用
  150. const renderChange = (data) => {
  151. console.log(data);
  152. };
  153. //修改
  154. const renderEdit = (data) => {
  155. console.log(data);
  156. };
  157. //删除弹框
  158. const onNodeClick = (data) => {
  159. flag.value = true;
  160. title.value = data.auth_name;
  161. auId.value = data.auth_id;
  162. };
  163. //删除
  164. const remove = () => {
  165. const datas = childrenData.value;
  166. datas.filter((item, index) => {
  167. if (item.auth_id == auId.value) {
  168. datas.splice(index, 1);
  169. }
  170. });
  171. flag.value = false;
  172. ElMessage.success("删除成功");
  173. };
  174. //新增
  175. const addAuth = () => {
  176. console.log("新增");
  177. };
  178. </script>
  179. <style lang="scss" scoped>
  180. .permission {
  181. &-head {
  182. line-height: 35px;
  183. font-size: 14px;
  184. margin-bottom: 30px;
  185. .icon {
  186. width: 14px;
  187. height: 14px;
  188. background: #58c274;
  189. border-radius: 2px;
  190. display: inline-block;
  191. vertical-align: middle;
  192. margin-right: 10px;
  193. position: relative;
  194. top: -2px;
  195. }
  196. &:last-child {
  197. margin-right: 0;
  198. }
  199. .status2 {
  200. margin-left: 28px;
  201. .icon {
  202. background: #2d67e3;
  203. }
  204. }
  205. .status0 {
  206. margin-right: 28px;
  207. .icon {
  208. background: #d8b53b;
  209. }
  210. }
  211. }
  212. &-content {
  213. height: calc(100% - 65px);
  214. &-tree {
  215. width: 504px;
  216. height: 100%;
  217. margin-right: 24px;
  218. .contentTree {
  219. margin-top: 30px;
  220. }
  221. }
  222. &-card {
  223. height: 100%;
  224. flex: 1;
  225. }
  226. }
  227. .account-left-content-teams {
  228. position: relative;
  229. margin-top: 24px;
  230. .info-close {
  231. position: absolute;
  232. width: 24px;
  233. height: 24px;
  234. line-height: 24px;
  235. text-align: center;
  236. background: #000000;
  237. border-radius: 50%;
  238. top: -12px;
  239. right: -12px;
  240. z-index: 5;
  241. cursor: pointer;
  242. .icon {
  243. color: #fff;
  244. font-weight: 600;
  245. width: 12px;
  246. height: 12px;
  247. }
  248. }
  249. .list {
  250. background-color: #f5f7fa;
  251. .info {
  252. line-height: normal;
  253. margin-bottom: 37px;
  254. .name {
  255. font-size: 16px;
  256. font-weight: bold;
  257. max-width: 120px;
  258. white-space: nowrap;
  259. overflow: hidden;
  260. text-overflow: ellipsis;
  261. }
  262. .cap {
  263. width: 16px;
  264. height: 16px;
  265. display: inline-block;
  266. background-repeat: no-repeat;
  267. background-size: 100%;
  268. transition: all 0.3s;
  269. margin-left: 16px;
  270. &:first-child {
  271. margin-right: 0;
  272. }
  273. }
  274. .cap-plus {
  275. background-image: url("@/assets/status/ic_plus.png");
  276. &:hover {
  277. background-image: url("@/assets/status/ic_plus_hovar.png");
  278. }
  279. }
  280. .cap-edit {
  281. background-image: url("@/assets/status/ic_edit_default.png");
  282. &:hover {
  283. background-image: url("@/assets/status/ic_edit_hovar.png");
  284. }
  285. }
  286. .cap-sub {
  287. background-image: url("@/assets/status/ic_permissions_add_default.png");
  288. &:hover {
  289. background-image: url("@/assets/status/ic_permissions_add_hoavr.png");
  290. }
  291. }
  292. .cap-job {
  293. background-image: url("@/assets/status/ic_jobs.png");
  294. &:hover {
  295. background-image: url("@/assets/status/ic_jobs_hovar.png");
  296. }
  297. }
  298. .cap-member {
  299. background-image: url("@/assets/status/ic_member.png");
  300. &:hover {
  301. background-image: url("@/assets/status/ic_member_hovar.png");
  302. }
  303. }
  304. }
  305. }
  306. .team {
  307. background: #fff;
  308. border-radius: 4px;
  309. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  310. overflow: hidden;
  311. .bg {
  312. height: 4px;
  313. background: #6f81bc;
  314. }
  315. .status0 {
  316. background: #d8b53b;
  317. }
  318. .status1 {
  319. background: #58c274;
  320. }
  321. .status2 {
  322. background: #2d67e3;
  323. }
  324. }
  325. .list {
  326. padding: 23px 24px;
  327. position: relative;
  328. min-width: 240px;
  329. min-height: 118px;
  330. .info {
  331. margin-bottom: 20px;
  332. .info-avoutr {
  333. display: flex;
  334. .avoutr {
  335. width: 40px;
  336. height: 40px;
  337. border-radius: 50%;
  338. background: #303133;
  339. img {
  340. max-width: 100%;
  341. }
  342. }
  343. .msg {
  344. margin-left: 20px;
  345. p {
  346. margin: 0;
  347. padding: 0;
  348. height: 20px;
  349. line-height: 20px;
  350. }
  351. .name {
  352. font-weight: bold;
  353. color: #303133;
  354. font-size: 18px;
  355. margin-bottom: 8px;
  356. }
  357. .group {
  358. font-size: 14px;
  359. font-family: Microsoft YaHei;
  360. font-weight: 400;
  361. color: #303133;
  362. }
  363. }
  364. }
  365. .icon {
  366. font-size: 16px;
  367. cursor: pointer;
  368. }
  369. }
  370. .time,
  371. .ip {
  372. height: 16px;
  373. line-height: 16px;
  374. font-size: 16px;
  375. .glr {
  376. color: #909399;
  377. }
  378. }
  379. .ip {
  380. margin-top: 23px;
  381. margin-bottom: 38px;
  382. }
  383. .details {
  384. height: 24px;
  385. line-height: 24px;
  386. font-size: 14px;
  387. .success {
  388. color: #2d67e3;
  389. }
  390. .error {
  391. color: #909399;
  392. }
  393. }
  394. }
  395. }
  396. }
  397. </style>