优化网站导航模块
This commit is contained in:
106
src/api/think/thinkGoodsSku/index.ts
Normal file
106
src/api/think/thinkGoodsSku/index.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
import request from '@/utils/request';
|
||||
import type { ApiResult, PageResult } from '@/api';
|
||||
import type { ThinkGoodsSku, ThinkGoodsSkuParam } from './model';
|
||||
import { THINK_API_URL } from '@/config/setting';
|
||||
|
||||
/**
|
||||
* 分页查询商品规格表
|
||||
*/
|
||||
export async function pageThinkGoodsSku(params: ThinkGoodsSkuParam) {
|
||||
const res = await request.get<ApiResult<PageResult<ThinkGoodsSku>>>(
|
||||
THINK_API_URL + '/think/think-goods-sku/page',
|
||||
{
|
||||
params
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询商品规格表列表
|
||||
*/
|
||||
export async function listThinkGoodsSku(params?: ThinkGoodsSkuParam) {
|
||||
const res = await request.get<ApiResult<ThinkGoodsSku[]>>(
|
||||
THINK_API_URL + '/think/think-goods-sku',
|
||||
{
|
||||
params
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0 && res.data.data) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品规格表
|
||||
*/
|
||||
export async function addThinkGoodsSku(data: ThinkGoodsSku) {
|
||||
const res = await request.post<ApiResult<unknown>>(
|
||||
THINK_API_URL + '/think/think-goods-sku',
|
||||
data
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改商品规格表
|
||||
*/
|
||||
export async function updateThinkGoodsSku(data: ThinkGoodsSku) {
|
||||
const res = await request.put<ApiResult<unknown>>(
|
||||
THINK_API_URL + '/think/think-goods-sku',
|
||||
data
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除商品规格表
|
||||
*/
|
||||
export async function removeThinkGoodsSku(id?: number) {
|
||||
const res = await request.delete<ApiResult<unknown>>(
|
||||
THINK_API_URL + '/think/think-goods-sku/' + id
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除商品规格表
|
||||
*/
|
||||
export async function removeBatchThinkGoodsSku(data: (number | undefined)[]) {
|
||||
const res = await request.delete<ApiResult<unknown>>(
|
||||
THINK_API_URL + '/think/think-goods-sku/batch',
|
||||
{
|
||||
data
|
||||
}
|
||||
);
|
||||
if (res.data.code === 0) {
|
||||
return res.data.message;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据id查询商品规格表
|
||||
*/
|
||||
export async function getThinkGoodsSku(id: number) {
|
||||
const res = await request.get<ApiResult<ThinkGoodsSku>>(
|
||||
THINK_API_URL + '/think/think-goods-sku/' + id
|
||||
);
|
||||
if (res.data.code === 0 && res.data.data) {
|
||||
return res.data.data;
|
||||
}
|
||||
return Promise.reject(new Error(res.data.message));
|
||||
}
|
||||
37
src/api/think/thinkGoodsSku/model/index.ts
Normal file
37
src/api/think/thinkGoodsSku/model/index.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 商品规格表
|
||||
*/
|
||||
export interface ThinkGoodsSku {
|
||||
// 商品规格id
|
||||
goodsSkuId?: number;
|
||||
// 商品id
|
||||
goodsId?: number;
|
||||
// 商品sku记录索引 (由规格id组成)
|
||||
specSkuId?: string;
|
||||
// 规格图片
|
||||
image?: string;
|
||||
// 商品价格
|
||||
goodsPrice?: string;
|
||||
// 商品划线价
|
||||
linePrice?: string;
|
||||
// 积分
|
||||
integral?: string;
|
||||
// 当前库存数量
|
||||
stockNum?: number;
|
||||
// 商品销量
|
||||
goodsSales?: number;
|
||||
// 创建时间
|
||||
createTime?: number;
|
||||
// 更新时间
|
||||
updateTime?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 商品规格表搜索条件
|
||||
*/
|
||||
export interface ThinkGoodsSkuParam extends PageParam {
|
||||
goodsSkuId?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user