|
@@ -264,7 +264,6 @@ export default {
|
|
|
Status: 0,
|
|
|
UpAuthId: -2,
|
|
|
Type: 0,
|
|
|
- disabled: true,
|
|
|
children: arr,
|
|
|
};
|
|
|
this.dataObj = _.cloneDeep(items);
|
|
@@ -293,12 +292,15 @@ export default {
|
|
|
currentChange () {
|
|
|
this.checkedList = [];
|
|
|
const arr = this.$refs.tree.getCheckedNodes();
|
|
|
- arr.forEach((item) => {
|
|
|
+ const half = this.$refs.tree.getHalfCheckedNodes();
|
|
|
+ const halfAll = half.filter(item => item.AuthId != -1 && item.AuthName != '所有权限');
|
|
|
+ const datas = halfAll.concat(arr);
|
|
|
+ datas.forEach((item) => {
|
|
|
// if(item.disabled==false){
|
|
|
this.checkedList.push(item.AuthId);
|
|
|
// }
|
|
|
});
|
|
|
- this.setDataObj(arr);
|
|
|
+ this.setDataObj(datas);
|
|
|
},
|
|
|
// 选中后设置初始数据
|
|
|
setDataObj (arr) {
|