Ver Fonte

静态页面提交

nahida há 1 ano atrás
pai
commit
93beec24e8
6 ficheiros alterados com 6 adições e 6 exclusões
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 1 1
      .env.staging
  4. 1 1
      index.html
  5. 1 1
      src/layout/components/Sidebar/Logo.vue
  6. 1 1
      src/views/login.vue

+ 1 - 1
.env.development

@@ -1,5 +1,5 @@
 # 页面标题
-VITE_APP_TITLE = '中科盛阳技术平台'
+VITE_APP_TITLE = '物联网设备管理平台'
 
 # 开发环境配置
 VITE_APP_ENV = 'development'

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
 # 页面标题
-VITE_APP_TITLE = 中科盛阳技术平台
+VITE_APP_TITLE = 物联网设备管理平台
 
 # 生产环境配置
 VITE_APP_ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
 # 页面标题
-VITE_APP_TITLE = 中科盛阳技术平台
+VITE_APP_TITLE = 物联网设备管理平台
 
 # 生产环境配置
 VITE_APP_ENV = 'staging'

+ 1 - 1
index.html

@@ -9,7 +9,7 @@
       content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
     />
     <link rel="icon" href="/src/assets/logo/logo.ico" />
-    <title>中科盛阳技术平台</title>
+    <title>物联网设备管理平台</title>
     <!--[if lt IE 11
       ]><script>
         window.location.href = '/html/ie.html'

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -59,7 +59,7 @@ defineProps({
   }
 })
 
-const title = ref('中科盛阳技术平台')
+const title = ref('物联网设备管理平台')
 const store = useStore()
 const sideTheme = computed(() => store.state.settings.sideTheme)
 </script>

+ 1 - 1
src/views/login.vue

@@ -6,7 +6,7 @@
       :rules="loginRules"
       class="login-form"
     >
-      <h3 class="title">中科盛阳技术平台</h3>
+      <h3 class="title">物联网设备管理平台</h3>
       <el-form-item prop="username">
         <el-input
           v-model="loginForm.username"