Browse Source

项目名称

maxiaoxiao 2 months ago
parent
commit
84b4c9f6e8
7 changed files with 12 additions and 10 deletions
  1. 3 1
      .env.development
  2. 1 1
      .env.production
  3. 1 1
      .env.staging
  4. 1 1
      index.html
  5. 2 2
      package.json
  6. 3 3
      src/views/login.vue
  7. 1 1
      src/views/register.vue

+ 3 - 1
.env.development

@@ -1,8 +1,10 @@
 # 页面标题
-VITE_APP_TITLE = 若依管理系统
+VITE_APP_TITLE = 遥感监测监管系统
 
 # 开发环境配置
 VITE_APP_ENV = 'development'
 
 # 若依管理系统/开发环境
 VITE_APP_BASE_API = '/dev-api'
+
+BASE_URL = '/dev-api'

+ 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

@@ -7,7 +7,7 @@
   <meta name="renderer" content="webkit">
   <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
   <link rel="icon" href="/favicon.ico">
-  <title>若依管理系统</title>
+  <title>遥感监测系统</title>
   <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
   <style>
     html,

+ 2 - 2
package.json

@@ -1,8 +1,8 @@
 {
   "name": "ruoyi",
   "version": "3.6.5",
-  "description": "若依管理系统",
-  "author": "若依",
+  "description": "遥感监测系统",
+  "author": "遥感",
   "license": "MIT",
   "type": "module",
   "scripts": {

+ 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"
@@ -168,7 +168,7 @@ getCookie();
   justify-content: center;
   align-items: center;
   height: 100%;
-  background-image: url("../assets/images/login-background.jpg");
+  background-image: url("../assets/logo/ygjc.png");
   background-size: cover;
 }
 .title {
@@ -179,7 +179,7 @@ getCookie();
 
 .login-form {
   border-radius: 6px;
-  background: #ffffff;
+  background: #ffffffa1;
   width: 400px;
   padding: 25px 25px 5px 25px;
   .el-input {

+ 1 - 1
src/views/register.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="register">
     <el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form">
-      <h3 class="title">若依后台管理系统</h3>
+      <h3 class="title">遥感监测系统</h3>
       <el-form-item prop="username">
         <el-input 
           v-model="registerForm.username"