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.

17 lines
802 B

// 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`,
7 months ago
UPLOAD_FILE:`${BASE_URL}/api/customer/upload-file`,
SHIP_CREATE: `${BASE_URL}/api/customer/ship/create`,
SHIP_INDEX: `${BASE_URL}/api/customer/ship/index`,
SHIP_DETAIL: `${BASE_URL}/api/customer/ship/get-one`,
7 months ago
SHIP_PROPERTY_ENUM: `${BASE_URL}/api/customer/ship/get-property-enum`,
7 months ago
SHIP_DELETE: `${BASE_URL}/api/customer/ship/delete`,
RESERVATION_STATUS_ENUM: `${BASE_URL}/api/customer/reservation/get-status-enum`,
RESERVATION_CREATE: `${BASE_URL}/api/customer/reservation/create`,
RESERVATION_LIST: `${BASE_URL}/api/customer/reservation/index`,
}