organizationEdit.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-11-29 11:26:07
  4. * @LastEditTime: 2022-01-17 10:04:48
  5. * @LastEditors: Please set LastEditors
  6. * @Description:新增组织
  7. * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityPower.vue
  8. -->
  9. <template>
  10. <div class="authorityPower">
  11. <!--新增组织-->
  12. <div class="addApp-form">
  13. <div class="addApp-form-title flex">
  14. <div class="title">编辑组织</div>
  15. <div class="btn">
  16. <el-button @click="saveBtn('form')" type="primary">保存</el-button>
  17. </div>
  18. </div>
  19. <div class="addApp-form-content dialog-public-background">
  20. <el-form :inline="true" ref="form" :rules="rules" class="form" :model="form">
  21. <el-form-item prop="name" label="组织名称">
  22. <el-input placeholder="请输入组织名称" maxlength="32" v-model="form.name"></el-input>
  23. </el-form-item>
  24. <el-form-item prop="id" label="组织类型">
  25. <el-select v-model="form.id" placeholder="请选择">
  26. <el-option label="集团内" value="1"></el-option>
  27. <el-option label="集团外" value="0"></el-option>
  28. </el-select>
  29. </el-form-item>
  30. <el-form-item label="描述">
  31. <el-input style="width: 640px" maxlength="200" placeholder="请输入描述" v-model="form.app"></el-input>
  32. </el-form-item>
  33. </el-form>
  34. </div>
  35. </div>
  36. <div class="power-content flex-wrap">
  37. <div class="r24 flex1 part">
  38. <Organization :defaultProps="defaultProps" :data="data" nodekey="OrganId" :checkedKeys="checkedKeys" title="上级组织" />
  39. </div>
  40. <!--有角色-->
  41. <template v-if="openRole">
  42. <div class="r24 flex1 part">
  43. <Rolelist @checkChange="checkChange" @checkClick="checkClick" :checkBoxList="checkBoxList" :dataList="arrs" :active="true" class="hucRole" :number="8" title="角色列表" />
  44. </div>
  45. <div class="flex1 part">
  46. <Permissionlist :RoleList="RoleList" :check="true" class="hucPower" title="权限列表" />
  47. </div>
  48. </template>
  49. <!--有账号组-->
  50. <template v-else-if="OpenGroup">
  51. <div class="r24 flex1 part">
  52. <Rolelist @checkChange="checkChange" @checkClick="checkGroup" :checkBoxList="checkBoxList" :dataList="arrs" :active="true" class="hucRole" :number="8" title="权限组列表" />
  53. </div>
  54. <div class="flex1 part">
  55. <Permissionlist :RoleList="RoleList" :check="true" class="hucPower" title="权限列表" />
  56. </div>
  57. </template>
  58. <!--无角色-->
  59. <template v-else>
  60. <div class="r24 flex1 part">
  61. <Permissiontree :queryType="queryType" :queryId="OrganUpid" :checkedKeys="checkedBoxs" @nodeClick="nodeClick" @getTreeData="getTreeData" title="权限树" />
  62. </div>
  63. <div class="flex1 part">
  64. <Rulesofcompetency :authList="authList" :authTo="authTo" @getData="getData" title="权限规则" />
  65. </div>
  66. </template>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. import Permissiontree from "@/components/permissiontree";
  72. import Rulesofcompetency from "@/components/rulesofcompetency";
  73. import Organization from "@/components/organization";
  74. import Permissionlist from "@/components/permissionlist";
  75. import Rolelist from "@/components/rolelist";
  76. import treeData from "../minixs/treeData";
  77. import roleData from "../minixs/roleData";
  78. import { mapGetters } from "vuex";
  79. import { RoleAuths } from "@/api/apiAuthority";
  80. import { newOrganmod, newOrganall } from "@/api/postInterface";
  81. export default {
  82. name: "AuthorityPower",
  83. mixins: [treeData, roleData],
  84. components: {
  85. Rulesofcompetency,
  86. Organization,
  87. Permissiontree,
  88. Permissionlist,
  89. Rolelist,
  90. },
  91. data () {
  92. return {
  93. Status: null,
  94. AppId: null,
  95. form: {
  96. //应用表单
  97. name: "",
  98. id: "",
  99. app: "",
  100. },
  101. title: "角色",
  102. rules: {
  103. //表单验证
  104. name: [{ required: true, message: "请输入组织名称", trigger: "blur" }],
  105. id: [{ required: true, message: "请输入标识符", trigger: "blur" }],
  106. },
  107. defaultProps: {
  108. children: "children",
  109. label: "OrganName",
  110. },
  111. queryType: null,
  112. checkBoxList: [], //角色列表选中
  113. Status: null,
  114. OrganUpid: null,
  115. checkedKeys: [], //上级组织选中
  116. RoleList: [],
  117. checkedBoxs: [],
  118. arrs: [],
  119. authId: [], //权限树默认选中ID
  120. authList: [],
  121. authTo: {},
  122. openRole: null,
  123. OpenGroup: null,
  124. dataObj: {}, //上级权限指定树数据
  125. data: [], //上级权限
  126. roleList: [], //角色
  127. checkRoles: [], //选中的角色
  128. checkTrees: [], //上级权限选中树数据
  129. rulesObj: {}, //权限规则数据
  130. upRoleList: [],
  131. };
  132. },
  133. computed: {
  134. ...mapGetters(["systemSet"]),
  135. },
  136. watch: {
  137. //监听上级组织数据
  138. dataList: {
  139. handler (val) {
  140. const arr = [val];
  141. this.decompose(arr, this.OrganUpid);
  142. if (Array.isArray(this.dataObj)) {
  143. if (this.dataObj.children) {
  144. delete this.dataObj.children;
  145. }
  146. this.data = this.dataObj;
  147. } else {
  148. if (this.dataObj.children) {
  149. delete this.dataObj.children;
  150. }
  151. this.data = [this.dataObj];
  152. }
  153. this.checkedKeys = [this.OrganUpid];
  154. },
  155. deep: true,
  156. },
  157. arrs: {
  158. handler (arr) {
  159. if (this.openRole) {
  160. this.defaultChecked(arr, "RoleId");
  161. } else if (this.OpenGroup) {
  162. this.defaultChecked(arr, "GroupId");
  163. }
  164. },
  165. deep: true,
  166. },
  167. },
  168. created () {
  169. const { OrganId, OrganUpid } = this.$route.query;
  170. const { OpenRole, OpenGroup } =
  171. typeof this.systemSet === "string"
  172. ? JSON.parse(this.systemSet)
  173. : this.systemSet; //1是请求角色 0是请求用户
  174. this.OrganUpid = OrganUpid;
  175. this.AppId = OrganId;
  176. this.openRole = OpenRole;
  177. this.OpenGroup = OpenGroup;
  178. this.getOrganTree();
  179. this.getOrganDetails(this.AppId);
  180. if (OrganUpid == -1) {
  181. if (this.openRole) {
  182. this.gueryRole();
  183. //this.getRoleByOrgan(this.OrganUpid)
  184. } else if (this.OpenGroup) {
  185. this.getGroupTree();
  186. }
  187. this.queryType = "all";
  188. } else {
  189. this.queryType = "origin";
  190. if (this.openRole) {
  191. this.getRoleByOrgan(this.OrganUpid);
  192. } else if (this.OpenGroup) {
  193. this.getGroupByOrgan(this.OrganUpid);
  194. }
  195. }
  196. },
  197. methods: {
  198. //获取选中的树数据
  199. getTreeData (arr) {
  200. this.checkTrees = arr;
  201. },
  202. //获取指定数据
  203. decompose (data, id) {
  204. for (let i = 0; i < data.length; i++) {
  205. if (data[i].OrganId == id) {
  206. this.dataObj = data[i];
  207. } else if (data[i].children && data[i].children.length > 0) {
  208. this.decompose(data[i].children, id);
  209. }
  210. }
  211. },
  212. // 默认选中
  213. defaultChecked (arr, id) {
  214. const datas = [];
  215. arr.forEach((item, index) => {
  216. this.checkRoles.forEach((p) => {
  217. if (item[id] == p[id]) {
  218. datas.push(index);
  219. }
  220. });
  221. });
  222. this.checkBoxList = datas;
  223. },
  224. //权限树点击
  225. nodeClick (obj) {
  226. const arr = this.$store.getters.authArrs;
  227. arr.push(obj);
  228. this.$store.dispatch("auth/changeAuthArrs", arr);
  229. },
  230. //角色点击回调
  231. checkClick (item) {
  232. this.roleAuths(item.RoleId);
  233. },
  234. //账号组点击回调
  235. checkGroup (item) {
  236. this.groupAuths(item.GroupId);
  237. },
  238. //根据角色查看权限列表
  239. async roleAuths (id) {
  240. try {
  241. let params = {
  242. RoleId: id,
  243. };
  244. const res = await RoleAuths(params);
  245. if (res.code === 0) {
  246. this.RoleList = res.returnData;
  247. } else {
  248. this.$message.error(res.message);
  249. }
  250. } catch (error) {
  251. console.log("出错了", error);
  252. }
  253. },
  254. //组织详情查询
  255. async getOrganDetails (id) {
  256. try {
  257. let params = {
  258. OrganId: id,
  259. };
  260. const res = await newOrganall(params);
  261. if (res.code === 0) {
  262. const {
  263. AuthList,
  264. OrganDesc,
  265. OrganName,
  266. OrganType,
  267. RoleList,
  268. Status,
  269. GroupList,
  270. } = res.returnData;
  271. this.form.name = OrganName;
  272. this.form.id = OrganType;
  273. this.form.app = OrganDesc;
  274. this.Status = Status;
  275. if (AuthList && AuthList.length) {
  276. AuthList.forEach((item) => {
  277. this.authId.push(item.AuthId);
  278. });
  279. this.authList = _.cloneDeep(AuthList);
  280. this.authTo = AuthList[0];
  281. this.checkedBoxs = this.authId;
  282. }
  283. if (RoleList && RoleList.length) {
  284. const [checkRoles, checkBoxs] = [[], []];
  285. RoleList.forEach((item, index) => {
  286. if (item.IsSelected == 1) {
  287. checkRoles.push(item);
  288. checkBoxs.push(index);
  289. }
  290. });
  291. if (checkRoles.length && checkBoxs.length) {
  292. this.checkRoles = checkRoles;
  293. this.roleAuths(RoleList[0].RoleId);
  294. }
  295. }
  296. if (GroupList && GroupList.length) {
  297. const [checkRoles, checkBoxs] = [[], []];
  298. GroupList.forEach((item, index) => {
  299. if (item.IsSelected == 1) {
  300. checkRoles.push(item);
  301. checkBoxs.push(index);
  302. }
  303. });
  304. if (checkRoles.length && checkBoxs.length) {
  305. this.checkRoles = checkRoles;
  306. this.groupAuths(GroupList[0].GroupId);
  307. }
  308. }
  309. } else {
  310. this.$message.error(res.message);
  311. }
  312. } catch (error) {
  313. console.log("出错了", error);
  314. }
  315. },
  316. //角色选取
  317. checkChange (arr) {
  318. const datas = [];
  319. for (let i = 0; i < arr.length; i++) {
  320. datas.push(this.arrs[arr[i]]);
  321. }
  322. datas.forEach((item) => {
  323. item.IsSelected = "1";
  324. });
  325. this.checkRoles = datas;
  326. },
  327. //获取权限规则
  328. getData (obj) {
  329. this.rulesObj = obj;
  330. },
  331. //保存
  332. saveBtn (formName) {
  333. this.$refs[formName].validate((valid) => {
  334. if (valid) {
  335. this.saveOrgan();
  336. } else {
  337. console.log("error submit!!");
  338. return false;
  339. }
  340. });
  341. },
  342. //组织新增保存
  343. async saveOrgan () {
  344. try {
  345. const caps = [];
  346. const newDatas = [];
  347. const arr = this.$store.getters.authArrs;
  348. this.checkTrees.forEach((item) => {
  349. caps.push(item.AuthList);
  350. });
  351. arr.forEach((item) => {
  352. newDatas.push(item.AuthList);
  353. });
  354. const newMsg = newDatas.concat(caps);
  355. newMsg.forEach((item) => {
  356. item["AuthId"] = Number(item["AuthId"]);
  357. });
  358. const datas = _.unionBy(newMsg, "AuthId");
  359. const res = await newOrganmod({
  360. OrganName: this.form.name,
  361. OrganType: this.form.id,
  362. OrganDesc: this.form.app,
  363. OrganUpid: this.OrganUpid,
  364. OrganId: this.AppId,
  365. Status: this.Status,
  366. RoleList: this.openRole ? this.checkRoles : [],
  367. AuthList: this.openRole ? [] : datas,
  368. GroupList: this.OpenGroup ? this.checkRoles : [],
  369. });
  370. if (res.code === 0) {
  371. this.$message.success(res.message);
  372. this.$store.dispatch("tagsView/delView", this.$route);
  373. this.$router.push("/organization");
  374. } else {
  375. this.$message.error(res.message);
  376. }
  377. } catch (error) {
  378. console.log("出错了", error);
  379. }
  380. },
  381. },
  382. };
  383. </script>
  384. <style lang="scss" scoped>
  385. .authorityPower {
  386. padding: 0 64px;
  387. padding-top: 32px;
  388. }
  389. .addApp-form {
  390. background: #ffffff;
  391. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  392. border-radius: 16px;
  393. padding: 32px 32px 40px 32px;
  394. .title {
  395. font-size: 24px;
  396. font-family: Microsoft YaHei;
  397. font-weight: bold;
  398. color: #303133;
  399. .isqy {
  400. span {
  401. font-weight: 400;
  402. font-size: 14px;
  403. margin: 0 28px 0 42px;
  404. }
  405. }
  406. }
  407. .addApp-form-content {
  408. margin-top: 40px;
  409. ::v-deep .form {
  410. .el-form-item {
  411. margin-bottom: 0;
  412. margin-right: 40px;
  413. }
  414. .el-input__inner {
  415. height: 32px;
  416. line-height: 32px;
  417. min-width: 184px;
  418. }
  419. .content {
  420. .el-form-item__content {
  421. flex: 1;
  422. }
  423. .el-form-item__label {
  424. margin-left: 27px;
  425. }
  426. }
  427. }
  428. }
  429. }
  430. .power-content {
  431. margin-top: 24px;
  432. height: 704px;
  433. .part {
  434. height: 704px;
  435. }
  436. }
  437. </style>