|
@@ -31,7 +31,7 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="setting-group">
|
|
|
- <SvgIcon class="icon-style" size="18" name="home" @click="go('/micro-vent-3dModal/dashboard/analysis')" />
|
|
|
+ <SvgIcon class="icon-style" size="18" name="home" @click="go(PageEnum.BASE_HOME)" />
|
|
|
<SvgIcon class="icon-style" size="18" name="fixed" />
|
|
|
<SvgIcon class="icon-style" size="18" name="enter" />
|
|
|
<!-- <SvgIcon class="icon-style" size="18" name="setting" />
|
|
@@ -54,6 +54,7 @@
|
|
|
import { getMenus } from '/@/router/menus';
|
|
|
import { useGo } from '/@/hooks/web/usePage';
|
|
|
import { useRouter } from 'vue-router';
|
|
|
+ import { PageEnum } from '/@/enums/pageEnum';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'BottomSider',
|
|
@@ -73,7 +74,8 @@
|
|
|
|
|
|
function handleMenuClick(path: Menu) {
|
|
|
if (route.path.startsWith('/micro-')) {
|
|
|
- if (route.path.startsWith('/micro-vent-3dModal/dashboard/analysis')){
|
|
|
+ debugger
|
|
|
+ if (route.path.startsWith('/'+ PageEnum.BASE_HOME)){
|
|
|
const { href } = router.resolve(path.path)
|
|
|
window.open(href, '_blank')
|
|
|
}else {
|
|
@@ -81,7 +83,6 @@
|
|
|
}
|
|
|
} else {
|
|
|
// micro-vent-3dModal
|
|
|
-
|
|
|
if(route.path.startsWith('/subSysmodal/')) {
|
|
|
router.replace('/micro-vent-3dModal' + path.path)
|
|
|
}else{
|
|
@@ -113,6 +114,7 @@
|
|
|
openMenu,
|
|
|
selectMenu,
|
|
|
go,
|
|
|
+ PageEnum,
|
|
|
currentParentRoute,
|
|
|
};
|
|
|
},
|