Browse Source

标题、图标替换

hwb0 3 years ago
parent
commit
600b5dcfa7

+ 3 - 2
.env.development

@@ -1,10 +1,11 @@
 # 页面标题
-VUE_APP_TITLE = 盲票
+
+VUE_APP_TITLE = 票赢天下
 
 # 开发环境配置
 ENV = 'development'
 
-# 云管铺/开发环境
+# 票赢天下/开发环境
 VUE_APP_BASE_API = '/dev-api'
 
 # 路由懒加载

+ 3 - 2
.env.production

@@ -1,8 +1,9 @@
 # 页面标题
-VUE_APP_TITLE = 盲票
+
+VUE_APP_TITLE = 票赢天下
 
 # 生产环境配置
 ENV = 'production'
 
-# 云管铺/生产环境
+# 票赢天下/生产环境
 VUE_APP_BASE_API = '/prod-api'

+ 3 - 2
.env.staging

@@ -1,10 +1,11 @@
 # 页面标题
-VUE_APP_TITLE = 盲票
+
+VUE_APP_TITLE = 票赢天下
 
 NODE_ENV = staging
 
 # 测试环境配置
 ENV = 'staging'
 
-# 云管铺/测试环境
+# 票赢天下/测试环境
 VUE_APP_BASE_API = '/test-api'

+ 1 - 1
package.json

@@ -2,7 +2,7 @@
   "name": "mp",
   "version": "1.0.0",
   "description": "m",
-  "author": "云管铺",
+  "author": "票赢天下",
   "license": "MIT",
   "scripts": {
     "dev": "vue-cli-service serve",

BIN
src/assets/images/login-left.png


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

@@ -2,11 +2,11 @@
   <div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBg : variables.menuLightBg }">
     <transition name="sidebarLogoFade">
       <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
-        <img v-if="logo" :src="logo" class="sidebar-logo" />
-        <h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.sidebarTitle : variables.sidebarLightTitle }">{{ title }} </h1>
+        <!-- <img v-if="logo" :src="logo" class="sidebar-logo" /> -->
+        <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.sidebarTitle : variables.sidebarLightTitle }">{{ title }} </h1>
       </router-link>
       <router-link v-else key="expand" class="sidebar-logo-link" to="/">
-        <img v-if="logo" :src="logo" class="sidebar-logo" />
+        <!-- <img v-if="logo" :src="logo" class="sidebar-logo" /> -->
         <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.sidebarTitle : variables.sidebarLightTitle }">{{ title }} </h1>
       </router-link>
     </transition>
@@ -35,7 +35,7 @@ export default {
   },
   data() {
     return {
-      title: '云管铺',
+      title: '票赢天下',
       logo: logoImg
     }
   }

+ 1 - 1
src/views/login.vue

@@ -3,7 +3,7 @@
     <el-row type="flex">
       <el-col :span="12">
         <div class="login-form-left"> 
-          <span class="copyright">Copyright © 2021 quanshu123.com All Rights Reserved.</span>
+          <!-- <span class="copyright">Copyright © 2021 quanshu123.com All Rights Reserved.</span> -->
         </div>
       </el-col>
       <el-col :span="12">

+ 1 - 1
src/views/register.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="register">
     <el-form ref="registerForm" :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" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />