DESKTOP-SVI9JE1\muzen vor 1 Jahr
Ursprung
Commit
5eeb49f4c9
7 geänderte Dateien mit 10 neuen und 10 gelöschten Zeilen
  1. 2 2
      .env.development
  2. 2 2
      .env.production
  3. 2 2
      .env.staging
  4. 1 1
      index.html
  5. 1 1
      package.json
  6. 1 1
      src/views/login.vue
  7. 1 1
      src/views/register.vue

+ 2 - 2
.env.development

@@ -1,8 +1,8 @@
 # 页面标题
-VITE_APP_TITLE = 猫王智慧云播系统
+VITE_APP_TITLE = 妙播智慧管理平台
 
 # 开发环境配置
 VITE_APP_ENV = 'development'
 
-# 猫王智慧云播系统/开发环境
+# 妙播智慧管理平台/开发环境
 VITE_APP_BASE_API = '/dev-api'

+ 2 - 2
.env.production

@@ -1,10 +1,10 @@
 # 页面标题
-VITE_APP_TITLE = 猫王智慧云播系统
+VITE_APP_TITLE = 妙播智慧管理平台
 
 # 生产环境配置
 VITE_APP_ENV = 'production'
 
-# 猫王智慧云播系统/生产环境
+# 妙播智慧管理平台/生产环境
 VITE_APP_BASE_API = '/prod-api'
 
 # 是否在打包时开启压缩,支持 gzip 和 brotli

+ 2 - 2
.env.staging

@@ -1,10 +1,10 @@
 # 页面标题
-VITE_APP_TITLE = 猫王智慧云播系统
+VITE_APP_TITLE = 妙播智慧管理平台
 
 # 生产环境配置
 VITE_APP_ENV = 'staging'
 
-# 猫王智慧云播系统/生产环境
+# 妙播智慧管理平台/生产环境
 VITE_APP_BASE_API = '/stage-api'
 
 # 是否在打包时开启压缩,支持 gzip 和 brotli

+ 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,

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "ruoyi",
   "version": "3.8.7",
-  "description": "猫王智慧云播系统",
+  "description": "妙播智慧管理平台",
   "author": "猫王",
   "license": "MIT",
   "type": "module",

+ 1 - 1
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" type="text" size="large" auto-complete="off" placeholder="账号">
           <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>

+ 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" type="text" size="large" auto-complete="off" placeholder="账号">
           <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template>