feat(mp): design-handoff 产出的页面样式和组件优化

- 首页/商城/医生端/积分/家庭档案等页面 SCSS + TSX 更新
- TabFilter 组件样式优化
- points service 接口调整
- app.config 路由注册更新
This commit is contained in:
iven
2026-05-18 02:12:41 +08:00
parent 2698c98888
commit e555496528
26 changed files with 1887 additions and 1428 deletions

View File

@@ -56,6 +56,10 @@ export async function listProducts(params?: {
return api.get<ProductListResponse>('/health/points/products', params);
}
export async function getProduct(productId: string) {
return api.get<PointsProduct>(`/health/points/products/${productId}`);
}
// ===== 兑换订单 =====
export interface PointsOrder {