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

陈帅's avatar
陈帅 committed
6
export interface IVisitData2 {
陈帅's avatar
陈帅 committed
7 8 9 10
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
11
export interface ISalesData {
陈帅's avatar
陈帅 committed
12 13 14 15
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
16
export interface ISearchData {
陈帅's avatar
陈帅 committed
17 18 19 20 21 22 23
  index: number;
  keyword: string;
  count: number;
  range: number;
  status: number;
}

陈帅's avatar
陈帅 committed
24
export interface IOfflineData {
陈帅's avatar
陈帅 committed
25 26 27 28
  name: string;
  cvr: number;
}

陈帅's avatar
陈帅 committed
29
export interface IOfflineChartData {
陈帅's avatar
陈帅 committed
30 31 32 33 34
  x: any;
  y1: number;
  y2: number;
}

陈帅's avatar
陈帅 committed
35
export interface ISalesTypeData {
陈帅's avatar
陈帅 committed
36 37 38 39
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
40
export interface ISalesTypeDataOnline {
陈帅's avatar
陈帅 committed
41 42 43 44
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
45
export interface ISalesTypeDataOffline {
陈帅's avatar
陈帅 committed
46 47 48 49
  x: string;
  y: number;
}

陈帅's avatar
陈帅 committed
50
export interface IRadarData {
陈帅's avatar
陈帅 committed
51 52 53 54 55
  name: string;
  label: string;
  value: number;
}

陈帅's avatar
陈帅 committed
56
export interface IAnalysisData {
陈帅's avatar
陈帅 committed
57 58 59 60 61 62 63 64 65 66 67
  visitData: IVisitData[];
  visitData2: IVisitData2[];
  salesData: ISalesData[];
  searchData: ISearchData[];
  offlineData: IOfflineData[];
  offlineChartData: IOfflineChartData[];
  salesTypeData: ISalesTypeData[];
  salesTypeDataOnline: ISalesTypeDataOnline[];
  salesTypeDataOffline: ISalesTypeDataOffline[];
  radarData: IRadarData[];
}