|
|
@@ -22,7 +22,7 @@
|
|
|
</el-menu>
|
|
|
</el-anchor>
|
|
|
</div>
|
|
|
- <div class="expert-content" ref="containerRef">
|
|
|
+ <div class="expert-content" :style="{ height: curRole == 2 ? `calc(100% - 50px)` : 'calc(100% - 20px)' }" ref="containerRef">
|
|
|
<slot :menuData="menuData">
|
|
|
<div v-for="(section, index) in menuData" :key="index" class="content-section">
|
|
|
<div
|
|
|
@@ -120,7 +120,7 @@ const handleEdit = (sub) => {
|
|
|
if(curRole == 2 && props.isEdit){
|
|
|
router.push({
|
|
|
path: "/edit_plan",
|
|
|
- query: { arrangeId: sub.schemeId }
|
|
|
+ query: { arrangeId: sub.arrangeId }
|
|
|
});
|
|
|
}
|
|
|
};
|
|
|
@@ -224,7 +224,7 @@ const handleClick = (e) => {
|
|
|
}
|
|
|
.expert-content {
|
|
|
width: calc(100% - 100px);
|
|
|
- height: 100%;
|
|
|
+ height: calc(100% - 50px);
|
|
|
overflow: auto;
|
|
|
box-sizing: border-box;
|
|
|
.content-section {
|