2023-06-10 20:57:16 +08:00
|
|
|
import request from '@/config/axios'
|
|
|
|
|
|
|
|
export interface RecordVO {
|
|
|
|
id: number
|
|
|
|
bizId: string
|
|
|
|
bizType: string
|
|
|
|
title: string
|
|
|
|
description: string
|
|
|
|
point: number
|
|
|
|
totalPoint: number
|
|
|
|
userId: number
|
|
|
|
createDate: Date
|
|
|
|
}
|
|
|
|
|
|
|
|
// 查询用户积分记录列表
|
|
|
|
export const getRecordPage = async (params) => {
|
2023-08-19 14:10:11 +08:00
|
|
|
return await request.get({ url: `/member/point/record/page`, params })
|
2023-06-10 20:57:16 +08:00
|
|
|
}
|