新增品牌接口

v1.1.0
于肖磊 2024-11-14 16:15:13 +08:00
parent 4e09c9cb0b
commit 3824350444
1 changed files with 15 additions and 0 deletions

15
src/api/brand.ts Normal file
View File

@ -0,0 +1,15 @@
import request from '@/utils/request';
class ShopAPI {
/** 自动查询商品接口*/
static getBrandLists(data: any) {
return request({
url: `diyapi/brandautodata`,
method: 'post',
data,
});
}
}
export default ShopAPI;