瀏覽代碼

refactor: 更新项目标题为中科盛阳后台管理系统

- 修改了 .env.development、.env.production、.env.staging 中的VITE_APP_TITLE 变量
- 更新了 index.html 中的页面标题
- 修改了 login.vue 中的登录界面标题
- 更新了 package.json 中的项目描述
nahida 1 年之前
父節點
當前提交
57ec800896
共有 7 個文件被更改,包括 8 次插入8 次删除
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 1 1
      .env.staging
  4. 1 1
      index.html
  5. 1 1
      package.json
  6. 二進制
      public/favicon.ico
  7. 3 3
      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

@@ -16,7 +16,7 @@
 	<script src="https://unpkg.com/mapv-three@1.0.10/dist/mapvthree.umd.js"></script>
 	<script src="//mapv.baidu.com/build/mapv.min.js"></script>
 	<script src="https://code.bdstatic.com/npm/mapvgl@1.0.0-beta.189/dist/mapvgl.min.js"></script>
-  <title>若依管理系统</title>
+  <title>中科盛阳后台管理系统</title>
   <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
   <style>
     html,

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "ruoyi",
   "version": "3.8.9",
-  "description": "若依管理系统",
+  "description": "中科盛阳后台管理系统",
   "author": "若依",
   "license": "MIT",
   "type": "module",

二進制
public/favicon.ico


+ 3 - 3
src/views/login.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="login">
     <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form">
-      <h3 class="title">若依后台管理系统</h3>
+      <h3 class="title">中科盛阳后台管理系统</h3>
       <el-form-item prop="username">
         <el-input
           v-model="loginForm.username"
@@ -65,9 +65,9 @@
 </template>
 
 <script setup>
-import { getCodeImg } from "@/api/login";
+import {getCodeImg} from "@/api/login";
 import Cookies from "js-cookie";
-import { encrypt, decrypt } from "@/utils/jsencrypt";
+import {decrypt, encrypt} from "@/utils/jsencrypt";
 import useUserStore from '@/store/modules/user'
 
 const userStore = useUserStore()