49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import UserHeader from '@/layout/layout-header/UserHeader.vue'
|
|
import SystemHeader from '@/layout/layout-header/SystemHeader.vue'
|
|
import AppMain from '@/layout/app-main/index.vue'
|
|
import useStore from '@/stores'
|
|
import { useRoute } from 'vue-router'
|
|
const route = useRoute()
|
|
const { theme, user } = useStore()
|
|
const isDefaultTheme = computed(() => {
|
|
return theme.isDefaultTheme()
|
|
})
|
|
const {
|
|
params: { folderId }, // id为knowledgeID
|
|
query: { from },
|
|
} = route as any
|
|
const isShared = computed(() => {
|
|
return (
|
|
folderId === 'shared' ||
|
|
from === 'systemShare' ||
|
|
from === 'systemManage' ||
|
|
route.path.includes('resource-management')
|
|
)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app-layout">
|
|
<div class="app-header" :class="!isDefaultTheme ? 'custom-header' : ''">
|
|
<el-alert
|
|
v-if="user.isExpire()"
|
|
:title="$t('layout.isExpire')"
|
|
type="warning"
|
|
class="border-b"
|
|
show-icon
|
|
:closable="false"
|
|
/>
|
|
<SystemHeader v-if="isShared"></SystemHeader>
|
|
<UserHeader v-else />
|
|
</div>
|
|
<div class="app-main" :class="user.isExpire() ? 'isExpire' : ''">
|
|
<AppMain />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<style lang="scss">
|
|
@use './index.scss';
|
|
</style>
|