1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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) => {
| return await request.get({ url: `/member/point/record/page`, params })
| }
|
|