|
@@ -1,17 +1,9 @@
|
|
<template>
|
|
<template>
|
|
<a-layout-sider class="sider">
|
|
<a-layout-sider class="sider">
|
|
- <h2
|
|
|
|
- :style="{ padding: `16px ${lang === langNameEum.zh ? '20px' : '6px'}` }"
|
|
|
|
- >
|
|
|
|
|
|
+ <h2 style="padding: 0;">
|
|
<!-- 四维工地管家 -->
|
|
<!-- 四维工地管家 -->
|
|
|
|
|
|
- <img
|
|
|
|
- :src="
|
|
|
|
- lang === langNameEum.zh
|
|
|
|
- ? './images/logo_cn@2x.png'
|
|
|
|
- : './images/logo_en@2x.png'
|
|
|
|
- "
|
|
|
|
- />
|
|
|
|
|
|
+ <img src="./images/sync_logo.png" />
|
|
</h2>
|
|
</h2>
|
|
|
|
|
|
<a-menu
|
|
<a-menu
|
|
@@ -42,7 +34,7 @@ import type { MenuProps } from 'ant-design-vue/es/menu'
|
|
|
|
|
|
defineOptions({ name: 'LayoutSider' })
|
|
defineOptions({ name: 'LayoutSider' })
|
|
|
|
|
|
-type MenuName = (typeof allMenus)[number]
|
|
|
|
|
|
+type MenuName = typeof allMenus[number]
|
|
const userStore = useUserStore()
|
|
const userStore = useUserStore()
|
|
const allMenus = [RoutesName.personal, RoutesName.projects] as const
|
|
const allMenus = [RoutesName.personal, RoutesName.projects] as const
|
|
|
|
|