chenrui 4 years ago
parent
commit
cdadade8f4
10 changed files with 13 additions and 7 deletions
  1. 2 1
      .env
  2. 2 1
      .env.development
  3. 2 1
      .env.preview
  4. 2 1
      .env.qbdev
  5. 2 1
      .env.qbpre
  6. 2 1
      .env.qbpro
  7. BIN
      public/clzlogo.png
  8. 1 1
      public/index.html
  9. BIN
      public/logo.png
  10. BIN
      public/qbyclogo.png

+ 2 - 1
.env

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=false
 VUE_APP_API_BASE_URL=https://aitour-it.zyucgj.com/at-it
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台
-VUE_APP_ANOTHEN_NAME=章鱼
+VUE_APP_ANOTHEN_NAME=章鱼养车
+VUE_APP_PINYIN=clz
 VUE_APP_LOGO=@/assets/logo.png
 VUE_APP_THEME_COLOR=#1890FF
 VUE_APP_COM_NAME=陕西山海高科信息技术有限公司

+ 2 - 1
.env.development

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=true
 VUE_APP_API_BASE_URL=/api
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台-dev
-VUE_APP_ANOTHEN_NAME=章鱼
+VUE_APP_ANOTHEN_NAME=章鱼养车
+VUE_APP_PINYIN=clz
 VUE_APP_LOGO=@/assets/logo.png
 VUE_APP_THEME_COLOR=#1890FF
 VUE_APP_COM_NAME=陕西山海高科信息技术有限公司

+ 2 - 1
.env.preview

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=true
 VUE_APP_API_BASE_URL=https://aitour-it.test.zyucgj.com/at-it
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台-pro
-VUE_APP_ANOTHEN_NAME=章鱼
+VUE_APP_ANOTHEN_NAME=章鱼养车
+VUE_APP_PINYIN=clz
 VUE_APP_LOGO=@/assets/logo.png
 VUE_APP_THEME_COLOR=#1890FF
 VUE_APP_COM_NAME=陕西山海高科信息技术有限公司

+ 2 - 1
.env.qbdev

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=true
 VUE_APP_API_BASE_URL=/api
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台-qbdev
-VUE_APP_ANOTHEN_NAME=丘比
+VUE_APP_ANOTHEN_NAME=丘比养车
+VUE_APP_PINYIN=qbyc
 VUE_APP_LOGO=@/assets/logos.png
 VUE_APP_THEME_COLOR=#eb6b2d
 VUE_APP_COM_NAME=成都丘比象科技有限公司

+ 2 - 1
.env.qbpre

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=true
 VUE_APP_API_BASE_URL=https://aitour-it.test.qiubcar.com/at-it
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台-qbpre
-VUE_APP_ANOTHEN_NAME=丘比
+VUE_APP_ANOTHEN_NAME=丘比养车
+VUE_APP_PINYIN=qbyc
 VUE_APP_LOGO=@/assets/logos.png
 VUE_APP_THEME_COLOR=#eb6b2d
 VUE_APP_COM_NAME=成都丘比象科技有限公司

+ 2 - 1
.env.qbpro

@@ -3,7 +3,8 @@ VUE_APP_PREVIEW=true
 VUE_APP_API_BASE_URL=https://aitour-it.qiubcar.com/at-it
 VUE_APP_VERSION=V1.0.1
 VUE_APP_PRO_NAME=智能巡店IT后台
-VUE_APP_ANOTHEN_NAME=丘比
+VUE_APP_ANOTHEN_NAME=丘比养车
+VUE_APP_PINYIN=qbyc
 VUE_APP_LOGO=@/assets/logos.png
 VUE_APP_THEME_COLOR=#eb6b2d
 VUE_APP_COM_NAME=成都丘比象科技有限公司

BIN
public/clzlogo.png


+ 1 - 1
public/index.html

@@ -4,7 +4,7 @@
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
-    <link rel="icon" href="<%= BASE_URL %>logo.png">
+    <link rel="icon" href="<%= BASE_URL %><%= VUE_APP_PINYIN %>logo.png">
     <title>智能巡店IT后台</title>
     <style>#loading-mask{position:fixed;left:0;top:0;height:100%;width:100%;background:#fff;user-select:none;z-index:9999;overflow:hidden}.loading-wrapper{position:absolute;top:50%;left:50%;transform:translate(-50%,-100%)}.loading-dot{animation:antRotate 1.2s infinite linear;transform:rotate(45deg);position:relative;display:inline-block;font-size:64px;width:64px;height:64px;box-sizing:border-box}.loading-dot i{width:22px;height:22px;position:absolute;display:block;background-color:#1890ff;border-radius:100%;transform:scale(.75);transform-origin:50% 50%;opacity:.3;animation:antSpinMove 1s infinite linear alternate}.loading-dot i:nth-child(1){top:0;left:0}.loading-dot i:nth-child(2){top:0;right:0;-webkit-animation-delay:.4s;animation-delay:.4s}.loading-dot i:nth-child(3){right:0;bottom:0;-webkit-animation-delay:.8s;animation-delay:.8s}.loading-dot i:nth-child(4){bottom:0;left:0;-webkit-animation-delay:1.2s;animation-delay:1.2s}@keyframes antRotate{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes antRotate{to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes antSpinMove{to{opacity:1}}@-webkit-keyframes antSpinMove{to{opacity:1}}</style>
     <!-- require cdn assets css -->

BIN
public/logo.png


BIN
public/qbyclogo.png