This commit is contained in:
2025-07-15 13:45:36 +08:00
parent 5f904364bf
commit 1f2f59ef7c
19 changed files with 1384 additions and 844 deletions

View File

@@ -4,7 +4,11 @@ export function apiGetCart() {
return getAxios({ url: '/cgi-bin/cart/latest' })
}
export function login(data) {
return postAxios({ url: 'api/account/login', data })
return postAxios({ url: '/api/user/aiChat-doLogin', data })
}
export function getIdByName(name) {
return getAxios({ url: `/api/tenant/get-id-by-name?name=${name}` })
}
export function cheekalive(data) {
return postAxios({ url: 'api/account/cheekalive', data })