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.
103 lines
2.4 KiB
103 lines
2.4 KiB
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { UserBalanceLog, UserBalanceLogParam } from './model';
|
|
|
|
/**
|
|
* 分页查询余额明细
|
|
*/
|
|
export async function pageUserBalanceLog(params: UserBalanceLogParam) {
|
|
const res = await request.get<ApiResult<PageResult<UserBalanceLog>>>(
|
|
'/shop/user-balance-log/page',
|
|
{ params }
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询余额明细列表
|
|
*/
|
|
export async function listUserBalanceLog(params?: UserBalanceLogParam) {
|
|
const res = await request.get<ApiResult<UserBalanceLog[]>>(
|
|
'/shop/user-balance-log',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询余额明细
|
|
*/
|
|
export async function getUserBalanceLog(id: number) {
|
|
const res = await request.get<ApiResult<UserBalanceLog>>(
|
|
'/shop/user-balance-log/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加余额明细
|
|
*/
|
|
export async function addUserBalanceLog(data: UserBalanceLog) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/shop/user-balance-log',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改余额明细
|
|
*/
|
|
export async function updateUserBalanceLog(data: UserBalanceLog) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/shop/user-balance-log',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除余额明细
|
|
*/
|
|
export async function removeUserBalanceLog(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/shop/user-balance-log/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除余额明细
|
|
*/
|
|
export async function removeUserBalanceLogs(data: (number | undefined)[]) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/shop/user-balance-log/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|