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.
9 lines
264 B
9 lines
264 B
|
7 months ago
|
// API配置
|
||
|
|
export const BASE_URL = 'https://xukoushuniu.115.langye.net'
|
||
|
|
|
||
|
|
// API接口地址
|
||
|
|
export const API = {
|
||
|
|
LOGIN: `${BASE_URL}/api/customer/login-by-code`,
|
||
|
|
GET_USER_INFO: `${BASE_URL}/api/customer/me`,
|
||
|
|
// 其他API接口可以在这里添加
|
||
|
|
}
|