- 创建水票模板API接口和数据模型 - 实现水票模板的增删改查功能 - 创建用户水票API接口和数据模型 - 实现用户水票的增删改查功能 - 添加水票消费日志管理功能 - 实现水票释放管理功能 - 开发水票模板管理页面界面 - 创建水票编辑弹窗组件 - 集成表格展示和搜索功能 - 实现批量操作和删除确认功能
106 lines
2.5 KiB
TypeScript
106 lines
2.5 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { GltUserTicketLog, GltUserTicketLogParam } from './model';
|
|
|
|
/**
|
|
* 分页查询消费日志
|
|
*/
|
|
export async function pageGltUserTicketLog(params: GltUserTicketLogParam) {
|
|
const res = await request.get<ApiResult<PageResult<GltUserTicketLog>>>(
|
|
'/glt/glt-user-ticket-log/page',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询消费日志列表
|
|
*/
|
|
export async function listGltUserTicketLog(params?: GltUserTicketLogParam) {
|
|
const res = await request.get<ApiResult<GltUserTicketLog[]>>(
|
|
'/glt/glt-user-ticket-log',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加消费日志
|
|
*/
|
|
export async function addGltUserTicketLog(data: GltUserTicketLog) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/glt/glt-user-ticket-log',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改消费日志
|
|
*/
|
|
export async function updateGltUserTicketLog(data: GltUserTicketLog) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/glt/glt-user-ticket-log',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除消费日志
|
|
*/
|
|
export async function removeGltUserTicketLog(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/glt/glt-user-ticket-log/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除消费日志
|
|
*/
|
|
export async function removeBatchGltUserTicketLog(data: (number | undefined)[]) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/glt/glt-user-ticket-log/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询消费日志
|
|
*/
|
|
export async function getGltUserTicketLog(id: number) {
|
|
const res = await request.get<ApiResult<GltUserTicketLog>>(
|
|
'/glt/glt-user-ticket-log/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|