|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2022-02-10 14:49:20
|
|
|
- * @LastEditTime: 2022-02-16 14:35:13
|
|
|
+ * @LastEditTime: 2022-02-16 16:27:48
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description: 编辑职员
|
|
|
* @FilePath: \Foshan4A4.0\src\views\staffManagement\compontents\staffEdit.vue
|
|
@@ -192,6 +192,7 @@ export default {
|
|
|
rulesObj: {}, //权限规则数据
|
|
|
isMainJob: true, //是否主岗
|
|
|
oldOrganId: "",
|
|
|
+ OrganId: null,
|
|
|
onCheckedArr: [],//当前显示选中权限组
|
|
|
alljobArr: [],//全部岗位
|
|
|
GroupIds: [], //当前选中的用户组
|
|
@@ -206,6 +207,9 @@ export default {
|
|
|
dataList: {
|
|
|
handler (val) {
|
|
|
this.data = [val];
|
|
|
+ if (this.orgTypes == 'org') {
|
|
|
+ this.orgCheckedKeys = [this.OrganId];
|
|
|
+ }
|
|
|
},
|
|
|
deep: true,
|
|
|
},
|
|
@@ -225,7 +229,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
- const { OrganId, Status, OfficerId } = this.$route.query;
|
|
|
+ const { OrganId, Status, OfficerId, orgType } = this.$route.query;
|
|
|
const { OpenRole, PwdLengthBegin, PwdLengthEnd, PwdStruc, OpenGroup, UserOfficerMulti } =
|
|
|
typeof this.systemSet === "string"
|
|
|
? JSON.parse(this.systemSet)
|
|
@@ -236,12 +240,14 @@ export default {
|
|
|
this.openRole = OpenRole;
|
|
|
this.OpenGroup = OpenGroup;
|
|
|
this.OpenAuthData = UserOfficerMulti;
|
|
|
+ this.OrganId = OrganId;
|
|
|
+ this.orgTypes = orgType;
|
|
|
if (OpenGroup || !OpenGroup && !OpenRole) {
|
|
|
this.queryType = "all";
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|
|
|
- if (this.openRole) {
|
|
|
+ if (this.openRole && !this.OpenGroup) {
|
|
|
this.roleType = 'onlyRole';
|
|
|
}
|
|
|
},
|