main.js加
if (process.env.NODE_ENV !== 'development') { Vue.prototype.URL_PREFIX = 'http://139.196.7.54' } else { Vue.prototype.URL_PREFIX = '' }
在main.js文件中根据配置的参数的情况,更改api接口:生产环境用的139的地址
1 if (process.env.NODE_ENV !== 'development') { 2 Vue.prototype.URL_PREFIX = 'http://139.196.7.54' 3 } else { 4 Vue.prototype.URL_PREFIX = '' 5 }
调用的时候
1 this.$http.get(`${this.URL_PREFIX}/WebService/GPSAPPWebService.asmx/VehicleInfoCount?orgId=${userData.orgId}`).then(m => { 2 let data = eval(m.data) 3 _this.count = data.data.Count 4 _this.onlineCount = data.data.OnlineCount 5 })
https://www.cnblogs.com/molinglan/p/7065364.html