初始化

This commit is contained in:
2025-01-27 23:24:42 +08:00
parent c8a96306c4
commit 6ae8339299
421 changed files with 35687 additions and 0 deletions

106
api/shop/goodsLog/index.ts Normal file
View File

@@ -0,0 +1,106 @@
import request from '@/utils/request';
import type { ApiResult, PageResult } from '@/api';
import type { GoodsLog, GoodsLogParam } from './model';
import { MODULES_API_URL } from '@/config';
/**
* 分页查询商品日志表
*/
export async function pageGoodsLog(params: GoodsLogParam) {
const res = await request.get<ApiResult<PageResult<GoodsLog>>>(
MODULES_API_URL + '/shop/goods-log/page',
{
params
}
);
if (res.data.code === 0) {
return res.data.data;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 查询商品日志表列表
*/
export async function listGoodsLog(params?: GoodsLogParam) {
const res = await request.get<ApiResult<GoodsLog[]>>(
MODULES_API_URL + '/shop/goods-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 addGoodsLog(data: GoodsLog) {
const res = await request.post<ApiResult<unknown>>(
MODULES_API_URL + '/shop/goods-log',
data
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 修改商品日志表
*/
export async function updateGoodsLog(data: GoodsLog) {
const res = await request.put<ApiResult<unknown>>(
MODULES_API_URL + '/shop/goods-log',
data
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 删除商品日志表
*/
export async function removeGoodsLog(id?: number) {
const res = await request.delete<ApiResult<unknown>>(
MODULES_API_URL + '/shop/goods-log/' + id
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 批量删除商品日志表
*/
export async function removeBatchGoodsLog(data: (number | undefined)[]) {
const res = await request.delete<ApiResult<unknown>>(
MODULES_API_URL + '/shop/goods-log/batch',
{
data
}
);
if (res.data.code === 0) {
return res.data.message;
}
return Promise.reject(new Error(res.data.message));
}
/**
* 根据id查询商品日志表
*/
export async function getGoodsLog(id: number) {
const res = await request.get<ApiResult<GoodsLog>>(
MODULES_API_URL + '/shop/goods-log/' + id
);
if (res.data.code === 0 && res.data.data) {
return res.data.data;
}
return Promise.reject(new Error(res.data.message));
}

View File

@@ -0,0 +1,53 @@
import type { PageParam } from '@/api';
/**
* 商品日志表
*/
export interface GoodsLog {
// 统计ID
id?: number;
// 类型visit,cart,order,pay,collect,refund
type?: string;
// 商品ID
goodsId?: number;
// 是否浏览
visitNum?: string;
// 加入购物车数量
cartNum?: number;
// 下单数量
orderNum?: number;
// 支付数量
payNum?: number;
// 支付金额
payPrice?: string;
// 商品成本价
costPrice?: string;
// 支付用户ID
payUid?: number;
// 退款数量
refundNum?: number;
// 退款金额
refundPrice?: string;
// 收藏
collectNum?: string;
// 排序(数字越小越靠前)
sortNumber?: number;
// 状态, 0正常, 1冻结
status?: number;
// 用户ID
userId?: number;
// 租户id
tenantId?: number;
// 注册时间
createTime?: string;
// 修改时间
updateTime?: string;
}
/**
* 商品日志表搜索条件
*/
export interface GoodsLogParam extends PageParam {
id?: number;
keywords?: string;
}