auth.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <template>
  2. <div class="auth scroll-y">
  3. <div class="flex auth-content">
  4. <div class="role-info auth-list">
  5. <div class="box strategy-top">
  6. <div class="manageTitle">账号信息</div>
  7. <div class="role-info-content t30">
  8. <el-form ref="ruleFormRef" :model="ruleForm" class="demo-ruleForm">
  9. <el-form-item label="角色名称" prop="user_name">
  10. <el-input disabled v-model="ruleForm.user_name" size="default" placeholder="请输入角色名称" />
  11. </el-form-item>
  12. <el-form-item label="角色描述" prop="user_comment">
  13. <el-input disabled v-model="ruleForm.user_comment" size="default" type="textarea" :rows="3" placeholder="请输入角色描述" />
  14. </el-form-item>
  15. <el-form-item label="是否启用" prop="user_status">
  16. <el-radio-group disabled v-model="ruleForm.user_status">
  17. <el-radio :label="ruleForm.user_status || 2">启用</el-radio>
  18. <el-radio :label="0">禁用</el-radio>
  19. </el-radio-group>
  20. </el-form-item>
  21. </el-form>
  22. </div>
  23. </div>
  24. <!-- <div class="box strategy-bottom strategy">
  25. <div class="manageTitle">登录策略</div>
  26. <div class="strategy-content">
  27. <el-scrollbar>
  28. <el-checkbox-group v-model="checkboxGroup" size="default">
  29. <el-row :gutter="16">
  30. <el-col :span="8" v-for="item in groupData" :key="item.id">
  31. <div class="strategy-content-list">
  32. <el-checkbox class="ck" :title="item.label" :label="item.value">
  33. {{ item.label }}
  34. </el-checkbox>
  35. <el-button style="margin-top:8px" size="default" type="primary" link>查看</el-button>
  36. </div>
  37. </el-col>
  38. </el-row>
  39. </el-checkbox-group>
  40. </el-scrollbar>
  41. </div>
  42. </div> -->
  43. </div>
  44. <div class="box auth-list">
  45. <div class="manageTitle">角色</div>
  46. <div class="strategy auth-tree">
  47. <div class="strategy-content">
  48. <template v-if="roleData.length">
  49. <el-scrollbar>
  50. <el-checkbox-group style="padding: 8px;" @change="checkChange" v-model="roleGroup" size="default">
  51. <el-row :gutter="16">
  52. <el-col :span="8" v-for="(item,index) in roleData" :key="index">
  53. <div @click="handleClick(item,index)" :class="index == roleIndex ? 'active' : ''" class="strategy-content-list">
  54. <el-checkbox class="ck" :title="item.role_name" :label="item.role_id">
  55. {{ item.role_name }}
  56. </el-checkbox>
  57. </div>
  58. </el-col>
  59. </el-row>
  60. </el-checkbox-group>
  61. </el-scrollbar>
  62. </template>
  63. <template v-else>
  64. <el-empty description="暂无数据" />
  65. </template>
  66. </div>
  67. </div>
  68. </div>
  69. <div class="box auth-list">
  70. <div class="manageTitle">权限名称</div>
  71. <div v-if="groupData.length" class="auth-name flex-wrap">
  72. <span class="auth-name-list"> <span class="icon icon-time"></span> 时效规则有</span>
  73. <span class="auth-name-list"> <span class="icon icon-date"></span> 数据规则有</span>
  74. <span class="auth-name-list"> <span class="icon icon-ic_display_edit"></span> 显示及编辑权限</span>
  75. <span class="auth-name-list"> <span class="icon icon-ic_display"></span> 显示权限</span>
  76. </div>
  77. <div class="auth-box">
  78. <div class="strategy-content">
  79. <template v-if="groupData.length">
  80. <el-scrollbar>
  81. <el-row :gutter="16">
  82. <el-col :span="8" v-for="item in groupData" :key="item.id">
  83. <div class="strategy-content-list">
  84. <div class="flex info">
  85. <div class="name">{{item.auth_name}}</div>
  86. <el-button @click="handleCk(item)" size="default" type="primary" link>查看</el-button>
  87. </div>
  88. <div v-if="item.edit_col_condition ||
  89. item.delete_row_condition ||
  90. item.edit_row_condition ||
  91. item.new_col_condition ||
  92. item.query_col_conditon ||
  93. item.query_row_condition" class="auth-name flex-wrap">
  94. <span class="auth-name-list"> <span class="icon icon-time"></span></span>
  95. <span class="auth-name-list"> <span class="icon icon-date"></span></span>
  96. <span class="auth-name-list"> <span class="icon icon-ic_display_edit"></span></span>
  97. <span class="auth-name-list"> <span class="icon icon-ic_display"></span> </span>
  98. </div>
  99. </div>
  100. </el-col>
  101. </el-row>
  102. </el-scrollbar>
  103. </template>
  104. <template v-else>
  105. <el-empty description="暂无数据" />
  106. </template>
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. <!--新增/编辑-->
  112. <Dialog :flag="editDialogVisible" :msgTitle="editDialogTitle" @submitForm="submitForm()" @resetForm="resetForm()" :show-flag="true">
  113. <el-form ref="ruleFormRef" :model="ruleNewForm" label-width="110px" class="demo-ruleForm">
  114. <el-form-item label="许可查询行">
  115. <el-input size="default" disabled v-model="ruleNewForm.query_row_condition" placeholder="请输入内容"></el-input>
  116. </el-form-item>
  117. <el-form-item label="许可查询列">
  118. <el-input size="default" disabled v-model="ruleNewForm.query_col_conditon" placeholder="请输入内容"></el-input>
  119. </el-form-item>
  120. <el-form-item label="许可删除行">
  121. <el-input size="default" disabled v-model="ruleNewForm.delete_row_condition" placeholder="请输入内容"></el-input>
  122. </el-form-item>
  123. <el-form-item label="许可新增列">
  124. <el-input size="default" disabled v-model="ruleNewForm.new_col_condition" placeholder="请输入内容"></el-input>
  125. </el-form-item>
  126. <el-form-item label="许可编辑行">
  127. <el-input size="default" disabled v-model="ruleNewForm.edit_row_condition" placeholder="请输入内容"></el-input>
  128. </el-form-item>
  129. <el-form-item label="许可编辑列">
  130. <el-input size="default" disabled v-model="ruleNewForm.edit_col_condition" placeholder="请输入内容"></el-input>
  131. </el-form-item>
  132. </el-form>
  133. </Dialog>
  134. </div>
  135. </template>
  136. <script setup lang="ts">
  137. import { ref, reactive, onBeforeMount } from "vue";
  138. import { GeneralDataReception, Query } from "@/api/webApi";
  139. import { ElMessage } from "element-plus";
  140. import Dialog from "@/components/dialog/index.vue";
  141. const route = useRoute();
  142. const role_id = route.query.id;
  143. const ruleForm = ref<any>({
  144. user_name: "",
  145. user_comment: "",
  146. user_status: "",
  147. });
  148. const ruleNewForm = ref<any>({
  149. delete_row_condition: "",
  150. edit_col_condition: "",
  151. edit_row_condition: "",
  152. new_col_condition: "",
  153. query_col_conditon: "",
  154. query_row_condition: "",
  155. });
  156. const checkboxGroup = ref([1, 2]);
  157. const roleGroup = ref<any>([]);
  158. const groupData = ref<any>([]);
  159. const roleData = ref<any>([]);
  160. const pageNum = ref(1);
  161. const checkedKeys = ref<any>([]);
  162. const roleIndex = ref(null);
  163. const editDialogVisible = ref(false);
  164. const editDialogTitle = ref("查看规则");
  165. // 获取当前账号信息
  166. const getAccountInfo = async () => {
  167. const res = await Query({
  168. id: DATACONTENT_ID.accountDetailsId,
  169. dataContent: [role_id],
  170. });
  171. if (res.code == 0) {
  172. const { listValues } = res.returnData;
  173. const obj = listValues[0];
  174. ruleForm.value = obj;
  175. } else {
  176. ElMessage.error(res.message);
  177. }
  178. };
  179. //获取列表
  180. const getRoleData = async () => {
  181. const result = await Query({
  182. id: DATACONTENT_ID.roleTableNId,
  183. needPage: pageNum.value,
  184. dataContent: ["", sessionStorage.getItem("User_Id")],
  185. });
  186. if (result.code == 0) {
  187. const datas = result.returnData.listValues;
  188. roleData.value = datas;
  189. } else {
  190. ElMessage.error(result.message);
  191. }
  192. };
  193. //角色明细
  194. const roleDetails = async () => {
  195. const res = await Query({
  196. id: DATACONTENT_ID.accountRoleId,
  197. dataContent: [role_id],
  198. });
  199. if (res.code == 0) {
  200. const { listValues } = res.returnData;
  201. const datas: any = [];
  202. listValues.forEach((item) => {
  203. datas.push(item.role_id);
  204. });
  205. checkedKeys.value.push(datas);
  206. roleGroup.value = datas;
  207. } else {
  208. ElMessage.error(res.message);
  209. }
  210. };
  211. //当前选中角色
  212. const checkChange = (arr) => {
  213. checkedKeys.value.push(arr);
  214. const data1 = checkedKeys.value[checkedKeys.value.length - 1]; //最后一条数据
  215. const data2 = checkedKeys.value[checkedKeys.value.length - 2]; //倒数第二条数据
  216. if (data1.length > data2.length) {
  217. checksBoxTs(data1, data2, "add");
  218. } else {
  219. checksBoxTs(data2, data1, "del");
  220. }
  221. };
  222. //当前点击的角色
  223. const handleClick = (item, index) => {
  224. roleIndex.value = index;
  225. roleAuths(item.role_id);
  226. };
  227. //获取当前角色权限
  228. const roleAuths = async (id) => {
  229. const res = await Query({
  230. id: DATACONTENT_ID.roleAuthId,
  231. dataContent: [id],
  232. });
  233. if (res.code == 0) {
  234. groupData.value = res.returnData.listValues;
  235. } else {
  236. ElMessage.error(res.message);
  237. }
  238. };
  239. //查看当前角色规则
  240. const handleCk = (item) => {
  241. editDialogTitle.value = item.auth_name;
  242. ruleNewForm.value = item;
  243. editDialogVisible.value = true;
  244. };
  245. //提交当前取消数据
  246. const checksBoxTs = async (datas, arr, type) => {
  247. const res = [...datas, ...arr].filter(
  248. (item) => !(datas.some((p) => item == p) && arr.some((c) => item == c))
  249. );
  250. if (res && res.length) {
  251. const obj = <any>{
  252. role_id: res[res.length - 1],
  253. user_id: role_id,
  254. };
  255. if (type == "add") {
  256. obj.event = 1;
  257. } else {
  258. obj.event = 3;
  259. }
  260. const result = await GeneralDataReception({
  261. serviceId: SERVICE_ID.roleScId,
  262. dataContent: JSON.stringify(obj),
  263. });
  264. if (result.code == 0) {
  265. ElMessage.success(result.message);
  266. } else {
  267. ElMessage.error(result.message);
  268. }
  269. } else {
  270. ElMessage.error("未选中数据");
  271. }
  272. };
  273. const submitForm = () => {
  274. editDialogVisible.value = false;
  275. };
  276. const resetForm = () => {
  277. editDialogVisible.value = false;
  278. };
  279. onBeforeMount(() => {
  280. getAccountInfo();
  281. getRoleData();
  282. roleDetails();
  283. });
  284. </script>
  285. <style lang="scss" scoped>
  286. .auth {
  287. &-content {
  288. height: 100%;
  289. }
  290. &-list {
  291. flex: 1;
  292. margin-right: 24px;
  293. &:last-child {
  294. margin-right: 0;
  295. }
  296. .strategy-top {
  297. // height: 310px;
  298. height: 100%;
  299. }
  300. // .strategy-bottom {
  301. // height: calc(100% - 335px);
  302. // }
  303. .strategy {
  304. margin-top: 24px;
  305. &-content {
  306. height: calc(100% - 24px);
  307. &-list {
  308. padding: 8px 16px 16px 16px;
  309. height: 80px;
  310. background: #f5f7fa;
  311. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  312. border-radius: 4px;
  313. margin-top: 16px;
  314. border: 1px solid #f5f7fa;
  315. :deep .ck {
  316. display: flex;
  317. justify-content: space-between;
  318. flex-direction: row-reverse;
  319. .el-checkbox__label {
  320. max-width: 80%;
  321. overflow: hidden;
  322. padding-left: 0;
  323. text-overflow: ellipsis;
  324. }
  325. }
  326. }
  327. .active {
  328. border-color: #ac014d;
  329. }
  330. }
  331. }
  332. .auth-tree {
  333. margin-top: 14px;
  334. height: calc(100% - 44px);
  335. .strategy-content {
  336. height: 100%;
  337. }
  338. }
  339. .auth-name {
  340. margin-top: 16px;
  341. &-list {
  342. color: #afb4bf;
  343. margin-right: 30px;
  344. &:last-child {
  345. margin-right: 0;
  346. }
  347. .icon {
  348. width: 14px;
  349. height: 14px;
  350. background-repeat: no-repeat;
  351. background-size: 100% 100%;
  352. margin-right: 8px;
  353. position: relative;
  354. top: 2px;
  355. }
  356. .icon-time {
  357. background-image: url("@/assets/index/ic_time.png");
  358. }
  359. .icon-date {
  360. background-image: url("@/assets/index/ic_date.png");
  361. }
  362. .icon-ic_display_edit {
  363. background-image: url("@/assets/index/ic_display_edit.png");
  364. }
  365. .icon-ic_display {
  366. background-image: url("@/assets/index/ic_display.png");
  367. }
  368. }
  369. }
  370. .auth-box {
  371. margin-top: 14px;
  372. height: calc(100% - 70px);
  373. .strategy-content {
  374. height: 100%;
  375. }
  376. .auth-name-list {
  377. margin-right: 0;
  378. }
  379. .info {
  380. margin-top: 6px;
  381. .name {
  382. max-width: 80%;
  383. overflow: hidden;
  384. text-overflow: ellipsis;
  385. white-space: nowrap;
  386. }
  387. }
  388. }
  389. }
  390. }
  391. </style>