소스 검색

项目名更改为cleanMachine

wuhongshuang 5 년 전
부모
커밋
fc0183742f
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      configs/env.js
  2. 1 1
      main.js

+ 2 - 2
configs/env.js

@@ -9,7 +9,7 @@ let configs = {
 if (process.env.NODE_ENV === 'development') {
 	// 测试环境
 	configs = Object.assign(configs, {
-		// baseUrl: 'https://app.sunzee.com.cn/ShenzeeServer',
+		// baseUrl: 'https://app.sunzee.com.cn/cleanMachineServer',
 		baseUrl: 'http://127.0.0.1:8090',
 	});
 }
@@ -17,7 +17,7 @@ if (process.env.NODE_ENV === 'development') {
 if (process.env.NODE_ENV === 'production') {
     // 生产环境
 	configs = Object.assign(configs, {
-		baseUrl: 'https://app.sunzee.com.cn/ShenzeeServer',
+		baseUrl: 'https://app.sunzee.com.cn/cleanMachineServer',
 		// isProduction: true,
 	});
 }

+ 1 - 1
main.js

@@ -23,7 +23,7 @@ const i18n = new VueI18n({
 App.mpType = 'app'
 
 Vue.prototype.serverurl="http://127.0.0.1:8090";
-// Vue.prototype.serverurl="https://app.sunzee.com.cn/ShenzeeServer";
+// Vue.prototype.serverurl="https://app.sunzee.com.cn/cleanMachineServer";
 Vue.prototype.$store = store;
 Vue.prototype._i18n = i18n;
 const app = new Vue({