1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| var BASE = {
| /**
| * @description api请求基础路径
| */
| API_DEV: {
| common: "http://127.0.0.1:8890",
| buyer: "http://127.0.0.1:8888",
| seller: "http://127.0.0.1:8889",
| manager: "http://127.0.0.1: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"
| },
| };
|
|