organizationEdit.vue 13 KB

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