- 重命名目录: openhis-server-new → healthlink-his-server - 重命名目录: openhis-ui-vue3 → healthlink-his-ui - 重命名Java类: OpenHisApplication → HealthLinkHisApplication - 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp - 重命名组件目录: OpenHis → HealthLinkHis - 重命名样式文件: openhis.scss → healthlink-his.scss - 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf - 更新所有源码引用 (0个残留) - 更新所有文档/脚本/配置中的引用
75 lines
1.3 KiB
JavaScript
Executable File
75 lines
1.3 KiB
JavaScript
Executable File
export default {
|
||
/**
|
||
* 网页标题
|
||
*/
|
||
title: import.meta.env.VITE_APP_TITLE,
|
||
/**
|
||
* 系统名称
|
||
*/
|
||
systemName: (import.meta.env.VITE_APP_SYSTEM_NAME ? import.meta.env.VITE_APP_SYSTEM_NAME : '经创贺联HIS'),
|
||
/**
|
||
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
|
||
*/
|
||
sideTheme: 'theme-light',
|
||
/**
|
||
* 是否系统布局配置
|
||
*/
|
||
showSettings: true,
|
||
|
||
/**
|
||
* 菜单导航模式 1、纯左侧 2、混合(左侧+顶部) 3、纯顶部
|
||
*/
|
||
topNav: 1,
|
||
|
||
/**
|
||
* 是否显示 tagsView
|
||
*/
|
||
tagsView: true,
|
||
|
||
/**
|
||
* 持久化标签页
|
||
*/
|
||
tagsViewPersist: false,
|
||
|
||
/**
|
||
* 显示页签图标
|
||
*/
|
||
tagsIcon: false,
|
||
|
||
/**
|
||
* 标签页样式:card 卡片(默认)、chrome 谷歌浏览器风格
|
||
*/
|
||
tagsViewStyle: 'card',
|
||
|
||
/**
|
||
* 是否固定头部
|
||
*/
|
||
fixedHeader: false,
|
||
|
||
/**
|
||
* 是否显示logo
|
||
*/
|
||
sidebarLogo: true,
|
||
|
||
/**
|
||
* 是否显示动态标题
|
||
*/
|
||
dynamicTitle: false,
|
||
|
||
/**
|
||
* @type {string | array} 'production' | ['production', 'development']
|
||
* @description Need show err logs component.
|
||
*/
|
||
errorLog: 'production',
|
||
|
||
/**
|
||
* 是否显示底部版权
|
||
*/
|
||
footerVisible: false,
|
||
|
||
/**
|
||
* 底部版权内容
|
||
*/
|
||
footerContent: 'Copyright © 2018-2026 HealthLink-HIS. All Rights Reserved.'
|
||
}
|