需要修复商城顶部筛选左右滑动问题

This commit is contained in:
cbb
2025-12-24 17:53:13 +08:00
parent 6f418fae8a
commit b67f9611c7
48 changed files with 1067 additions and 221 deletions

View File

@@ -1 +1,27 @@
// 各模块api
import http from '@/utils/request'
/** 注册 */
export const userRegister = data => {
return http({
url: '/api/register',
method: 'post',
data
})
}
/** 登录 */
export const userLogin = data => {
return http({
url: '/api/login',
method: 'post',
data
})
}
/** 获取用户信息 */
export const getUserData = () => {
return http({
url: '/api/userInfo',
method: 'get'
})
}