This commit is contained in:
2025-08-15 21:57:59 +08:00
parent 0df7221c10
commit 4e26581af6
7 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VITE_APP_TITLE = 新能源项目管理平台 VITE_APP_TITLE = 煤科建管平台
# 开发环境配置 # 开发环境配置
VITE_APP_ENV = 'development' VITE_APP_ENV = 'development'

View File

@ -1,5 +1,5 @@
# 页面标题 # 页面标题
VITE_APP_TITLE = 新能源项目管理平台 VITE_APP_TITLE = 煤科建管平台
# 生产环境配置 # 生产环境配置
VITE_APP_ENV = 'production' VITE_APP_ENV = 'production'

View File

@ -6,7 +6,7 @@
<meta name="renderer" content="webkit" /> <meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<title>新能源项目管理平台</title> <title>煤科建管平台</title>
<!--[if lt IE 11 <!--[if lt IE 11
]><script> ]><script>
window.location.href = '/html/ie.html'; window.location.href = '/html/ie.html';

View File

@ -34,7 +34,7 @@ defineProps({
} }
}); });
const title = ref('新能源项目管理平台'); const title = ref('煤科建管平台');
const settingsStore = useSettingsStore(); const settingsStore = useSettingsStore();
const sideTheme = computed(() => settingsStore.sideTheme); const sideTheme = computed(() => settingsStore.sideTheme);
</script> </script>

View File

@ -16,7 +16,8 @@ export const useNoticeStore = defineStore('notice', () => {
const addNotice = (notice: NoticeItem) => { const addNotice = (notice: NoticeItem) => {
console.log('🚀 ~ addNotice ~ notice:', notice); console.log('🚀 ~ addNotice ~ notice:', notice);
state.notices.push(notice); // 从前面录入
state.notices.unshift(notice);
}; };
const removeNotice = (notice: NoticeItem) => { const removeNotice = (notice: NoticeItem) => {

View File

@ -2,7 +2,7 @@
<div class="login"> <div class="login">
<el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form"> <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
<div class="title-box"> <div class="title-box">
<h3 class="title">新能源项目管理平台</h3> <h3 class="title">煤科建管平台</h3>
<lang-select /> <lang-select />
</div> </div>
<el-form-item v-if="tenantEnabled" prop="tenantId"> <el-form-item v-if="tenantEnabled" prop="tenantId">

View File

@ -2,7 +2,7 @@
<div class="register"> <div class="register">
<el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form"> <el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form">
<div class="title-box"> <div class="title-box">
<h3 class="title">新能源项目管理平台</h3> <h3 class="title">煤科建管平台</h3>
<lang-select /> <lang-select />
</div> </div>
<el-form-item v-if="tenantEnabled" prop="tenantId"> <el-form-item v-if="tenantEnabled" prop="tenantId">