货无忧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
345 B

export interface detailType{
/**
* 配车时间
* */
datatime:string|number;
/**
* 是否显示时间选择器
* */
show:boolean;
/**
* 配车数据列表
* */
recordsList:any;
/**
* 获取的页码
* */
current:number;
/**
* 获取的数据大小
* */
size:number;
/**
* 页面类型
* */
checkstate:number
}