国富commit-2ecc58241492ab82267476b5fe7ec8c39498988b

This commit is contained in:
xiaokun
2019-09-22 14:58:04 +08:00
parent 83e94dbfa3
commit cf45352eea
27 changed files with 2013 additions and 1380 deletions

View File

@@ -51,11 +51,11 @@ Vue.prototype.$jump = Jump
Vue.prototype.$utils = utils
//混合开发调试工具
if (process.env.VUE_APP_FLAG == 'development') {
if (process.env.NODE_ENV == 'development') {
// let Eruda = require('eruda')
// Eruda.init()
Vue.prototype.$rootUrl = location.origin
} else if (process.env.VUE_APP_FLAG == 'production') {
} else if (process.env.NODE_ENV == 'production') {
Vue.prototype.$rootUrl = location.origin + '/ebiz-h5'
}
let Eruda = require('eruda')