This commit is contained in:
Pengxiansen
2025-02-28 14:48:08 +08:00
parent d69d8a866d
commit 0325817f07
5 changed files with 1012 additions and 115 deletions

View File

@@ -760,6 +760,19 @@
}
];
}
if (n.indexOf("/growthpathmap") !== -1 || n.indexOf("/growthPathMap") !== -1) {
state.list = [
{
name: "报表中心",
},
{
name:'板块详细数据'
},
{
name:'专业力必修'
}
];
}
if (n.indexOf("/reportproject") !== -1 || n.indexOf("/ReportProject") !== -1) {
state.list = [
{

View File

@@ -668,6 +668,15 @@
<div class="img"></div>
</template>
<template #title>版块详细数据</template>
<!-- <a-menu-item key="sub17-2-8" v-if="checkMenu('growthpathmap')">
<span
:class="{
circleActive: selectedKeys[0] === 'sub17-2-8' ? true : false,
circle: selectedKeys[0] === 'sub17-2-8' ? false : true,
}"
></span>
<router-link to="/growthpathmap">专业力必修</router-link>
</a-menu-item> -->
<a-menu-item key="sub17-2-1" v-if="checkMenu('learningpathmap')">
<span
:class="{
@@ -1282,6 +1291,13 @@ export default {
selectedKeys: "sub17-2-7",
pagename: "考试",
},
{
href: "/growthpathmap",
openKeys: "sub17",
openKeys2: "sub17-2",
selectedKeys: "sub17-2-8",
pagename: "专业力必修",
},
{
href: "/overvoew",
openKeys: "sub17",

View File

@@ -138,7 +138,7 @@ const props = defineProps({
// 弹框标题
const title = computed(() => {
if (step.value == 1) {
return formData.value.info ? "编辑投票任务" : "添加投票";
return formData.value.id ? "编辑投票任务" : "添加投票";
} else if (step.value == 2) {
return "创建投票题干";
}