export interface TableDataRow {
|
id: string;
|
areaName: string;
|
areaLngLat: Array<LngLat> ;
|
areaColor: string;
|
}
|
export interface TableDataState {
|
tableData: {
|
data: Array<TableDataRow>
|
total: number;
|
loading: boolean;
|
listQuery: {
|
pageIndex: number;
|
pageSize: number;
|
searchParams:{
|
name: string
|
}
|
};
|
}
|
}
|
|
export interface AreaState {
|
disabled: boolean;
|
title: string;
|
isShowUserDialog: boolean;
|
areaForm: {
|
id: string;
|
areaName: string;
|
areaLngLat: Array<LngLat>;
|
areaColor: string;
|
};
|
areaFormRules:{},
|
}
|
|
export interface LngLat {
|
lng: string;
|
lat: string;
|
}
|
|
export interface LngState {
|
isShowUserDialog: boolean;
|
lngForm: {
|
lng: string;
|
lat: string;
|
};
|
lngFormRules:{},
|
}
|