chunping vor 3 Jahren
Ursprung
Commit
c0317d3272
5 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 1 1
      .env.staging
  4. 1 1
      src/api/common.js
  5. 2 2
      vue.config.js

+ 1 - 1
.env.development

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 云管铺
+VUE_APP_TITLE = 盲票
 
 # 开发环境配置
 ENV = 'development'

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 云管铺
+VUE_APP_TITLE = 盲票
 
 # 生产环境配置
 ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 云管铺
+VUE_APP_TITLE = 盲票
 
 NODE_ENV = staging
 

+ 1 - 1
src/api/common.js

@@ -12,7 +12,7 @@ export const publicFileSaveUrl = '/api/v1/mp/image/remote/upload/0'
 export const privateFileGetUrl = '/api/v1/mp/file/remote/download?name='
 
 // 云端公开可访问的BaseUrl
-export const publicFileGetUrl = process.env.NODE_ENV === "production" ? 'https://mp-public-1307117429.cos.ap-shanghai.myqcloud.com/':'https://mp-public-test-1307117429.cos.ap-shanghai.myqcloud.com/'
+export const publicFileGetUrl = process.env.NODE_ENV === "production" ? 'https://mp-public-1310078123.cos.ap-shanghai.myqcloud.com/':'https://mp-public-test-1307117429.cos.ap-shanghai.myqcloud.com/'
 
 /**
  * Put 方式上传图片

+ 2 - 2
vue.config.js

@@ -5,7 +5,7 @@ function resolve(dir) {
   return path.join(__dirname, dir)
 }
 
-const name = process.env.VUE_APP_TITLE || '云管铺' // 网页标题
+const name = process.env.VUE_APP_TITLE || '盲票管理' // 网页标题
 
 const port = process.env.port || process.env.npm_config_port || 80 // 端口
 
@@ -75,7 +75,7 @@ module.exports = {
 
     config
       .when(process.env.NODE_ENV !== 'development',
-        config => {  
+        config => {
           config
             .plugin('ScriptExtHtmlWebpackPlugin')
             .after('html')