organizationEdit.vue 14 KB

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