data.d.ts 787 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
export interface VisitDataType {
陈帅's avatar
陈帅 committed
2 3 4 5
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
6
export interface SearchDataType {
陈帅's avatar
陈帅 committed
7 8 9 10 11 12 13
  index: number;
  keyword: string;
  count: number;
  range: number;
  status: number;
}

陈帅's avatar
陈帅 committed
14
export interface OfflineDataType {
陈帅's avatar
陈帅 committed
15 16 17 18
  name: string;
  cvr: number;
}

陈帅's avatar
陈帅 committed
19
export interface OfflineChartData {
陈帅's avatar
陈帅 committed
20 21 22 23 24
  x: any;
  y1: number;
  y2: number;
}

陈帅's avatar
陈帅 committed
25
export interface RadarData {
陈帅's avatar
陈帅 committed
26 27 28 29 30
  name: string;
  label: string;
  value: number;
}

陈帅's avatar
陈帅 committed
31 32 33 34 35 36 37 38 39 40 41
export interface AnalysisData {
  visitData: VisitDataType[];
  visitData2: VisitDataType[];
  salesData: VisitDataType[];
  searchData: SearchDataType[];
  offlineData: OfflineDataType[];
  offlineChartData: OfflineChartData[];
  salesTypeData: VisitDataType[];
  salesTypeDataOnline: VisitDataType[];
  salesTypeDataOffline: VisitDataType[];
  radarData: RadarData[];
陈帅's avatar
陈帅 committed
42
}