init
This commit is contained in:
40
types/contorl.d.ts
vendored
Normal file
40
types/contorl.d.ts
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
export
|
||||
interface EditGoodsParams {
|
||||
/**
|
||||
* 子类
|
||||
*/
|
||||
degree_id: number;
|
||||
/**
|
||||
* 配件id
|
||||
*/
|
||||
goods_id: number;
|
||||
/**
|
||||
* 价格
|
||||
*/
|
||||
goods_price: number;
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
goods_sort: number;
|
||||
/**
|
||||
* 状态 10 上架 20 下架
|
||||
*/
|
||||
goods_status: number;
|
||||
/**
|
||||
* 库存
|
||||
*/
|
||||
goods_stock: number;
|
||||
/**
|
||||
* 图片传递id数组
|
||||
*/
|
||||
images: number[];
|
||||
/**
|
||||
* 机型
|
||||
*/
|
||||
product_id: number;
|
||||
/**
|
||||
* 分类
|
||||
*/
|
||||
type_id: number;
|
||||
[property: string]: any;
|
||||
}
|
||||
8
types/tabbar.d.ts
vendored
Normal file
8
types/tabbar.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
export interface TabItem {
|
||||
pagePath : string;
|
||||
iconPath : string;
|
||||
selectedIconPath : string;
|
||||
text : string;
|
||||
// badge ?: number | string;
|
||||
}
|
||||
Reference in New Issue
Block a user