迁移一部分接口

This commit is contained in:
李琦
2026-01-13 13:36:55 +08:00
parent 2a294898ec
commit 11ade5d7ae
11 changed files with 81 additions and 47 deletions

10
request/api/user.js Normal file
View File

@@ -0,0 +1,10 @@
import {post} from './http'
/**
* 获取用户信息(包含订单统计)
* @param params { store_id: number }
* @returns {Promise<*>}
*/
export async function getUserInfoApi(params) {
return await post('/user/info', params, 3)
}