flutter/lib/api/shop_api.dart
2025-08-21 10:50:38 +08:00

18 lines
578 B
Dart

class ShopApi {
///---------------------post
/// [size]分页数量
/// [current] 第几页
/// [categoryId] 分类id
/// [nameLike] 商品名称
static const String shopList = '/app/product/page'; // 商品列表
/// [showStatus]1=显示 [nameLike]分类名称
static const String shopCategory = '/app/productCategory/page'; // 商品分类
/// []
static const String shopSwiperList = '/app/article/carousel'; // 商品首页轮播图
///---------------------get
/// [url参数/id]
static const String shopDetail = '/app/product'; // 商品详情
}