|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2021-11-29 11:26:07
|
|
|
- * @LastEditTime: 2022-02-14 15:51:14
|
|
|
+ * @LastEditTime: 2022-02-16 11:19:16
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description:新增组织
|
|
|
* @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityPower.vue
|
|
@@ -113,6 +113,8 @@ export default {
|
|
|
handler (val) {
|
|
|
const arr = [val];
|
|
|
this.data = arr;
|
|
|
+ this.decompose(arr, this.OrganUpid);
|
|
|
+ this.data = [this.dataObj];
|
|
|
this.checkedKeys = [this.OrganUpid];
|
|
|
},
|
|
|
deep: true,
|
|
@@ -150,6 +152,9 @@ export default {
|
|
|
decompose (data, id) {
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
if (data[i].OrganId == id) {
|
|
|
+ if (data[i].children && data[i].children.length) {
|
|
|
+ delete data[i].children;
|
|
|
+ }
|
|
|
this.dataObj = data[i];
|
|
|
} else if (data[i].children && data[i].children.length > 0) {
|
|
|
this.decompose(data[i].children, id);
|