浏览代码

fix: 提交

bug/0816
yinsiyu 1 个月前
父节点
当前提交
0826c94515
共有 1 个文件被更改,包括 19 次插入12 次删除
  1. +19
    -12
      src/views/userManage/roleManage/roleDetail/index.vue

+ 19
- 12
src/views/userManage/roleManage/roleDetail/index.vue 查看文件

@@ -191,6 +191,7 @@ export default {
saleProcessData = []; saleProcessData = [];
if (this.doctorWorkMenus?.length > 0) { if (this.doctorWorkMenus?.length > 0) {
this.doctorWorkMenus?.forEach((item) => { this.doctorWorkMenus?.forEach((item) => {
let sChildren = [];
const { children = [], menuName: firstName, ...otherItem } = item; const { children = [], menuName: firstName, ...otherItem } = item;
(children || []).forEach((item2, index2) => { (children || []).forEach((item2, index2) => {
const { menuName: secondName, id } = item2; const { menuName: secondName, id } = item2;
@@ -202,11 +203,12 @@ export default {
firstName, firstName,
secondName, secondName,
}; };
if (index2 === 0) {
pushItem.rowspan2 = children.length;
}
doctorWorkData.push(pushItem);
sChildren.push(pushItem);
}); });
if (sChildren?.length > 0) {
sChildren[0].rowspan2 = sChildren.length;
}
doctorWorkData = [...doctorWorkData, ...sChildren];
}); });
} }
if (doctorWorkData.length > 0) { if (doctorWorkData.length > 0) {
@@ -216,6 +218,7 @@ export default {


if (this.saleManageMenus?.length > 0) { if (this.saleManageMenus?.length > 0) {
this.saleManageMenus.forEach((item) => { this.saleManageMenus.forEach((item) => {
let sChildren = [];
const { children = [], menuName: firstName, ...otherItem } = item; const { children = [], menuName: firstName, ...otherItem } = item;
(children || []).forEach((item2, index2) => { (children || []).forEach((item2, index2) => {
const { menuName: secondName, id } = item2; const { menuName: secondName, id } = item2;
@@ -227,11 +230,13 @@ export default {
firstName, firstName,
secondName, secondName,
}; };
if (index2 === 0) {
pushItem.rowspan2 = children.length;
}
saleManageData.push(pushItem);
sChildren.push(pushItem);

}); });
if (sChildren?.length > 0) {
sChildren[0].rowspan2 = sChildren.length;
}
saleManageData = [...saleManageData, ...sChildren];
}); });
} }
if (saleManageData.length > 0) { if (saleManageData.length > 0) {
@@ -241,6 +246,7 @@ export default {


if (this.saleProcessMenus?.length > 0) { if (this.saleProcessMenus?.length > 0) {
this.saleProcessMenus.forEach((item) => { this.saleProcessMenus.forEach((item) => {
let sChildren = [];
const { children = [], menuName: firstName, ...otherItem } = item; const { children = [], menuName: firstName, ...otherItem } = item;
(children || []).forEach((item2, index2) => { (children || []).forEach((item2, index2) => {
const { menuName: secondName, id } = item2; const { menuName: secondName, id } = item2;
@@ -252,11 +258,12 @@ export default {
firstName, firstName,
secondName, secondName,
}; };
if (index2 === 0) {
pushItem.rowspan2 = children.length;
}
saleProcessData.push(pushItem);
sChildren.push(pushItem);
}); });
if (sChildren?.length > 0) {
sChildren[0].rowspan2 = sChildren.length;
}
saleProcessData = [...saleProcessData, ...sChildren];
}); });
} }
if (saleProcessData.length > 0) { if (saleProcessData.length > 0) {


正在加载...
取消
保存