-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d4319c
commit 17ff3aa
Showing
5 changed files
with
3,095 additions
and
5,406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* base : 基础业务API | ||
* buyer : 买家API | ||
*/ | ||
// 开发环境 | ||
const dev = { | ||
common: "https://common-api.pickmall.cn", | ||
buyer: "https://buyer-api.pickmall.cn", | ||
|
||
}; | ||
// 生产环境 | ||
const prod = { | ||
common: "https://common-api.pickmall.cn", | ||
buyer: "https://buyer-api.pickmall.cn", | ||
}; | ||
|
||
//默认生产环境 | ||
let api = dev; | ||
//如果是开发环境 | ||
if (process.env.NODE_ENV == "development") { | ||
api = dev; | ||
} else { | ||
api = prod; | ||
} | ||
//微信小程序,app的打包方式建议为生产环境,所以这块直接条件编译赋值 | ||
// #ifdef MP-WEIXIN || APP-PLUS | ||
api = prod; | ||
// #endif | ||
|
||
api.buyer += "/buyer"; | ||
api.common += "/common"; | ||
export default { | ||
...api, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
export default { | ||
/** | ||
* @description 配置显示在浏览器标签的title | ||
*/ | ||
title: "lilishop", | ||
|
||
/** | ||
* @description token在Cookie中存储的天数,默认1天 | ||
*/ | ||
cookieExpires: 1, | ||
/** | ||
* @description 是否使用国际化,默认为false | ||
* 如果不使用,则需要在路由中给需要在菜单中展示的路由设置meta: {title: 'xxx'} | ||
* 用来在菜单中显示文字 | ||
*/ | ||
useI18n: true, | ||
|
||
|
||
|
||
/** | ||
* @description api请求基础路径 | ||
*/ | ||
api_dev: { | ||
common: "https://common-api.pickmall.cn", | ||
buyer: "https://buyer-api.pickmall.cn", | ||
seller: "https://store-api.pickmall.cn", | ||
manager: "https://admin-api.pickmall.cn" | ||
// common: 'http://192.168.0.100:8890', | ||
// buyer: 'http://192.168.0.100:8888', | ||
// seller: 'http://192.168.0.100:8889', | ||
// manager: 'http://192.168.0.100:8887' | ||
}, | ||
api_prod: { | ||
common: "https://common-api.pickmall.cn", | ||
buyer: "https://buyer-api.pickmall.cn", | ||
seller: "https://store-api.pickmall.cn", | ||
manager: "https://admin-api.pickmall.cn" | ||
}, | ||
/** | ||
* @description api请求基础路径前缀 | ||
*/ | ||
baseUrlPrefix: "/store", | ||
/** | ||
* @description 需要加载的插件 | ||
*/ | ||
plugin: { | ||
"error-store": { | ||
showInHeader: true, // 设为false后不会在顶部显示错误日志徽标 | ||
developmentOff: true // 设为true后在开发环境不会收集错误信息,方便开发中排查错误 | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.