feat(integral-external): order/user list, integral log, wa selfBonus
- Fix ExternalIntegral order list (no double restPage); default 普通订单; UI columns for useIntegral and buyer uid/nickname/phone; enrich StoreOrderDetailResponse and admin query select. - External user list: UserResponse.selfBonus and fillWaSelfBonus from wa_users.id=uid. - Integral log: AdminIntegralSearchRequest nickName/phone; findAdminList filters and ordering; integralExternal API sends page/limit as query params. - Integral detail page: linkType Chinese mapping including selfbonus; update docs/newpage.md. - Dashboard grid menu entries for integral-external routes. Made-with: Cursor
This commit is contained in:
@@ -28,12 +28,14 @@ export function getExternalUserList(params) {
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户积分明细分页列表
|
||||
* 用户积分明细分页列表(page/limit 走 query,与 /admin/user/integral/list 一致)
|
||||
*/
|
||||
export function getExternalIntegralLog(data) {
|
||||
const { page, limit, ...body } = data;
|
||||
return requestNoAuth({
|
||||
url: 'external/integral/log/list',
|
||||
method: 'post',
|
||||
data,
|
||||
params: { page, limit },
|
||||
data: body,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user