feat: 优化

This commit is contained in:
2026-02-26 18:52:09 +08:00
parent c2e4fde218
commit b76e3ff47d
17 changed files with 1027 additions and 1630 deletions

View File

@@ -0,0 +1,19 @@
import http from './http'
import { API_BASE } from '@gold/config/api'
/**
* 积分记录 API
*/
/**
* 获取当前用户积分记录分页
* @param {Object} params - 分页参数
* @param {number} params.pageNo - 页码
* @param {number} params.pageSize - 每页数量
* @param {string} params.type - 变动类型 increase/decrease
* @param {string} params.bizType - 业务类型
* @returns {Promise}
*/
export function getPointRecordPage(params = {}) {
return http.get(`${API_BASE.APP_MEMBER}/tik/point-record/page`, { params })
}