This commit is contained in:
wangdan-fit2cloud 2025-06-23 15:44:06 +08:00
parent f32f158876
commit c0979e2363
16 changed files with 10 additions and 7 deletions

View File

Before

Width:  |  Height:  |  Size: 770 KiB

After

Width:  |  Height:  |  Size: 770 KiB

View File

Before

Width:  |  Height:  |  Size: 647 KiB

After

Width:  |  Height:  |  Size: 647 KiB

View File

Before

Width:  |  Height:  |  Size: 674 KiB

After

Width:  |  Height:  |  Size: 674 KiB

View File

Before

Width:  |  Height:  |  Size: 602 KiB

After

Width:  |  Height:  |  Size: 602 KiB

View File

Before

Width:  |  Height:  |  Size: 626 KiB

After

Width:  |  Height:  |  Size: 626 KiB

View File

@ -79,7 +79,7 @@ const loginImage = computed(() => {
return `${fileURL.value}`
} else {
const imgName = getThemeImg(theme.themeInfo?.theme)
const imgPath = `../../assets/theme/${imgName}.jpg`
const imgPath = `/ui/theme/${imgName}.jpg`
const imageUrl = new URL(imgPath, import.meta.url).href
return imageUrl
}

View File

@ -1,5 +1,5 @@
const DocumentRouter = {
path: '/knowledge/resource/:id/',
path: '/knowledge/resource-management/:id/',
name: 'KnowledgeDetailResourceManagement',
meta: { title: 'common.fileUpload.document', activeMenu: '/knowledge', breadcrumb: true },
component: () => import('@/layout/layout-template/MainLayout.vue'),

View File

@ -1,5 +1,5 @@
const ModelRouter = {
path: '/knowledge/resource',
path: '/knowledge/resource-management',
name: 'knowledgeResourceManagement',
meta: { title: 'views.knowledge.title', permission: 'KNOWLEDGE:READ' },
hidden: true,
@ -8,7 +8,7 @@ const ModelRouter = {
children: [
{
path: '/knowledge/resource/document/upload/management',
path: '/knowledge/resource-management/document/upload',
name: 'UploadDocumentResourceManagement',
meta: { activeMenu: '/knowledge/resource' },
component: () => import('@/views/resource-management/document/UploadDocument.vue'),

View File

@ -1,12 +1,12 @@
const ParagraphRouter = {
path: '/paragraph/resource/:id/:documentId/management',
path: '/paragraph/resource-management/:id/:documentId',
name: 'ParagraphResourceManagement',
meta: { title: 'common.fileUpload.document', activeMenu: '/knowledge', breadcrumb: true },
component: () => import('@/layout/layout-template/SimpleLayout.vue'),
hidden: true,
children: [
{
path: '/paragraph/resource/:id/:documentId/management',
path: '/paragraph/resource-management/:id/:documentId',
name: 'ParagraphIndexResourceManagement',
meta: { activeMenu: '/knowledge' },
component: () => import('@/views/resource-management/paragraph/index.vue'),

View File

@ -6,7 +6,7 @@ export const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'home',
redirect: '/application',
// redirect: '/application',
children: [...rolesRoutes],
},

View File

@ -409,6 +409,9 @@ h5 {
.avatar-green {
background: var(--el-color-success);
}
.avatar-blue {
background: #3370ff;
}
.layout-bg {
background: var(--app-layout-bg-color);