You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
527 B
25 lines
527 B
const request = require("../utils/request")
|
|
/**
|
|
* 获取积分核销兑换码
|
|
*/
|
|
export function getCode() {
|
|
return request.get("userpointsverification/getqrcode")
|
|
}
|
|
/**
|
|
* 获取居民兑换记录接口
|
|
* @param behaviorCode 积分动作编码
|
|
* @param pageIndex Number 页码
|
|
* @param pageSize Number 页容量
|
|
*/
|
|
|
|
export function getPointsLogs({
|
|
behaviorCode,
|
|
pageIndex,
|
|
pageSize
|
|
}) {
|
|
return request.get("userpointsverification/getpointslogs", {
|
|
behaviorCode,
|
|
pageIndex,
|
|
pageSize
|
|
})
|
|
}
|