feat: 代客下单更新,修复店铺列表编辑展示问题
This commit is contained in:
@@ -47,10 +47,28 @@ const API = {
|
||||
shopId: shopId
|
||||
}
|
||||
});
|
||||
},
|
||||
// 获取店铺用户详情
|
||||
get(params: getRequest) {
|
||||
return request({
|
||||
url: `${baseURL}/detail`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
}
|
||||
}
|
||||
export default API;
|
||||
|
||||
export interface getRequest {
|
||||
/**
|
||||
* 会员用户id 对应shopUserId
|
||||
*/
|
||||
id?: number;
|
||||
/**
|
||||
* 用户id 不传递id则按照userId和当前shopId查询 对应userId
|
||||
*/
|
||||
userId?: string;
|
||||
[property: string]: any;
|
||||
}
|
||||
export interface getSummaryRequest {
|
||||
/**
|
||||
* 0 非vip 1 vip
|
||||
|
||||
Reference in New Issue
Block a user