|
@@ -73,7 +73,6 @@ export default {
|
|
|
return {
|
|
|
regulatorCheckDisabled: false,
|
|
|
userDatas: [],
|
|
|
- orgCheckedKeys: [],
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -226,6 +225,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
userCheckChangeHandler(arr) {
|
|
|
+ this.checkedUsers = this.userList.filter((item) =>
|
|
|
+ arr.includes(item.OfficerId)
|
|
|
+ );
|
|
|
this.getSectionByUser(arr);
|
|
|
},
|
|
|
async getSectionByUser(arr) {
|