feat: 产品列表页排序
- 为ProductType添加sort字段用于排序 - 产品列表页项目按照sort升序排序
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user