You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
522 B
12 lines
522 B
// appId: 正式 null | 测试 wxb35ef055a4dd8ad4
|
|
export const DEV = "dev"; // dev 测试 | prod 正式
|
|
export const VERSION = '1.0.0'; // 版本号
|
|
export const DEVURL = 'http://gxsky.lanzulive.com'; // 测试服请求地址
|
|
export const PRODURL = ''; // 正式服请求地址
|
|
|
|
/* 首页相关接口 */
|
|
export const API_CATEGORY_LIST = '/api/category/list'; // 首页-分类
|
|
export const API_GOODS_LIST = '/api/goods/list'; // 首页-分类下商品列表
|
|
|
|
// 用户订单
|
|
export const API_USERORDER = '/api/order/list';
|