feat: 产品列表页排序

- 为ProductType添加sort字段用于排序
- 产品列表页项目按照sort升序排序
This commit is contained in:
2025-11-08 15:34:42 +08:00
parent b4da838cae
commit bd894d6f2e
6 changed files with 64 additions and 26 deletions

View File

@ -1,3 +1,13 @@
/**
* 产品类型视图模型
* 用于产品列表页的section渲染与排序
*/
export interface ProductTypeView {
id: number;
name: string;
sort: number;
}
/**
* 产品列表视图模型
* 用于产品列表(/products)渲染的数据结构
@ -13,7 +23,7 @@ export interface ProductListView {
summary: string;
/** 产品类型 **/
product_type: string;
product_type: ProductTypeView;
/** 产品封面(图片的id) **/
cover: string;