You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
649 B
TypeScript

2 years ago
// @ts-ignore
/* eslint-disable */
import request from '@/utils/request';
2 years ago
/** 利用一级类目id查询对应的颜色、规格参数 获取规格 GET /b2b2c/pbccommondata/getrecordbyl3categoryid */
2 years ago
export async function getRecordByL3CategoryIdUsingGet(
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
params: API.getRecordByL3CategoryIdUsingGETParams,
options?: { [key: string]: any },
) {
2 years ago
return request<API.AjaxResultPbcCategoryCommonDataVO_>(
'/b2b2c/pbccommondata/getrecordbyl3categoryid',
2 years ago
{
method: 'GET',
params: {
...params,
},
...(options || {}),
},
);
}