|
|
@ -8,6 +8,7 @@ import {BasicColumn} from '/@/components/Table'; |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
type mapType = { |
|
|
|
type mapType = { |
|
|
|
|
|
|
|
id: string; |
|
|
|
title: string; |
|
|
|
title: string; |
|
|
|
orientation: number; |
|
|
|
orientation: number; |
|
|
|
lng: number; |
|
|
|
lng: number; |
|
|
@ -16,21 +17,21 @@ type mapType = { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
export const largeHospitalMapList: mapType[] = [ |
|
|
|
export const largeHospitalMapList: mapType[] = [ |
|
|
|
{title: '上级医检医院:金域', orientation: 0, lng: 112.919043, lat: 28.288623}, |
|
|
|
{id: '001', title: '上级医检医院:金域', orientation: 0, lng: 112.919043, lat: 28.288623}, |
|
|
|
{title: '上级医检医院:康来', orientation: 0, lng: 112.919165, lat: 28.289924}, |
|
|
|
{id: '002', title: '上级医检医院:康来', orientation: 0, lng: 112.919165, lat: 28.289924}, |
|
|
|
{title: '上级医检医院:附一', orientation: 0, lng: 112.919965, lat: 28.289924} |
|
|
|
{id: '003', title: '上级医检医院:附一', orientation: 0, lng: 112.919965, lat: 28.289924} |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
export const smallHospitalMapList: mapType[] = [ |
|
|
|
export const smallHospitalMapList: mapType[] = [ |
|
|
|
{title: '下级医院:湘雅医院', orientation: 0, lng: 112.918119, lat: 28.282891, notify: true}, |
|
|
|
{id: '001', title: '下级医院:湘雅医院', orientation: 0, lng: 112.918119, lat: 28.282891, notify: true}, |
|
|
|
{title: '下级医院:神经病医院', orientation: 0, lng: 112.918919, lat: 28.282991, notify: true}, |
|
|
|
{id: '002', title: '下级医院:神经病医院', orientation: 0, lng: 112.918919, lat: 28.282991, notify: true}, |
|
|
|
{title: '下级医院:第三医院', orientation: 0, lng: 112.918019, lat: 28.283991, notify: true} |
|
|
|
{id: '003', title: '下级医院:第三医院', orientation: 0, lng: 112.918019, lat: 28.283991, notify: true} |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
export const specimenMapList: mapType[] = [ |
|
|
|
export const specimenMapList: mapType[] = [ |
|
|
|
{title: '收样员:小梅', orientation: 0, lng: 112.915897, lat: 28.295506}, |
|
|
|
{id: '001', title: '收样员:小狗', orientation: 0, lng: 112.915897, lat: 28.295506}, |
|
|
|
{title: '收样员:小红', orientation: 0, lng: 112.914481, lat: 28.294977}, |
|
|
|
{id: '002', title: '收样员:小红', orientation: 0, lng: 112.914481, lat: 28.294977}, |
|
|
|
{title: '收样员:小明', orientation: 0, lng: 112.913864, lat: 28.295114} |
|
|
|
{id: '003', title: '收样员:小明', orientation: 0, lng: 112.913864, lat: 28.295114} |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
export const columns: BasicColumn[] = [ |
|
|
|
export const columns: BasicColumn[] = [ |
|
|
|