feat: 配置Car和Ship的弹窗列
This commit is contained in:
parent
653ba9a7c8
commit
d71d2334ee
|
@ -2,229 +2,428 @@ import { MarkerType } from './markerEnum'
|
|||
|
||||
// 核设施详情弹窗中的字段配置
|
||||
export default {
|
||||
[MarkerType.NuclearFacility]: [
|
||||
{
|
||||
label: 'FACILITY_NAME',
|
||||
key: 'facilityName'
|
||||
},
|
||||
{
|
||||
label: 'FACILITY ID',
|
||||
key: 'facilityId'
|
||||
},
|
||||
{
|
||||
label: 'ACTIVITY DAY',
|
||||
key: 'activityDay'
|
||||
},
|
||||
{
|
||||
label: 'ACTIVITY_YEAR',
|
||||
key: 'activityYear'
|
||||
},
|
||||
{
|
||||
label: 'BUILDDATE',
|
||||
key: 'buildDate'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYGROSS',
|
||||
key: 'capacitygross'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYNET',
|
||||
key: 'capacitynet'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYTHERMAL',
|
||||
key: 'capacitythermal'
|
||||
},
|
||||
{
|
||||
label: 'CRITICALITYDATE',
|
||||
key: 'criticalityDate'
|
||||
},
|
||||
{
|
||||
label: 'GRIDCONEETIONDATE',
|
||||
key: 'gridconeetionDate'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LOCATION',
|
||||
key: 'location'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'OPERARTOR',
|
||||
key: 'operartor'
|
||||
},
|
||||
{
|
||||
label: 'OWNER',
|
||||
key: 'owner'
|
||||
},
|
||||
{
|
||||
label: 'RETIREDATE',
|
||||
key: 'retireDate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'VENDOR',
|
||||
key: 'vendor'
|
||||
},
|
||||
],
|
||||
[MarkerType.ImsRnStationP]: [{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
}, {
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
}, {
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
}, {
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
}, {
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
}, {
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
}, {
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
}, {
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
}, {
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
}, {
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
}, {
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
}, {
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
}, {
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
}, {
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
}, {
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
}, {
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
}, {
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
}, {
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}],
|
||||
[MarkerType.ImsRnStationG]: [{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
}, {
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
}, {
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
}, {
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
}, {
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
}, {
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
}, {
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
}, {
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
}, {
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
}, {
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
}, {
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
}, {
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
}, {
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
}, {
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
}, {
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
}, {
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
}, {
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
}, {
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}],
|
||||
[MarkerType.NRL]: [{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
}, {
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
}, {
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
}, {
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
}, {
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
}, {
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
}, {
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
}, {
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
}, {
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
}, {
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
}, {
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
}, {
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
}]
|
||||
[MarkerType.NuclearFacility]: [
|
||||
{
|
||||
label: 'FACILITY_NAME',
|
||||
key: 'facilityName'
|
||||
},
|
||||
{
|
||||
label: 'FACILITY ID',
|
||||
key: 'facilityId'
|
||||
},
|
||||
{
|
||||
label: 'ACTIVITY DAY',
|
||||
key: 'activityDay'
|
||||
},
|
||||
{
|
||||
label: 'ACTIVITY_YEAR',
|
||||
key: 'activityYear'
|
||||
},
|
||||
{
|
||||
label: 'BUILDDATE',
|
||||
key: 'buildDate'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYGROSS',
|
||||
key: 'capacitygross'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYNET',
|
||||
key: 'capacitynet'
|
||||
},
|
||||
{
|
||||
label: 'CAPACITYTHERMAL',
|
||||
key: 'capacitythermal'
|
||||
},
|
||||
{
|
||||
label: 'CRITICALITYDATE',
|
||||
key: 'criticalityDate'
|
||||
},
|
||||
{
|
||||
label: 'GRIDCONEETIONDATE',
|
||||
key: 'gridconeetionDate'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LOCATION',
|
||||
key: 'location'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'OPERARTOR',
|
||||
key: 'operartor'
|
||||
},
|
||||
{
|
||||
label: 'OWNER',
|
||||
key: 'owner'
|
||||
},
|
||||
{
|
||||
label: 'RETIREDATE',
|
||||
key: 'retireDate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'VENDOR',
|
||||
key: 'vendor'
|
||||
}
|
||||
],
|
||||
[MarkerType.ImsRnStationP]: [
|
||||
{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
},
|
||||
{
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
},
|
||||
{
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
},
|
||||
{
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
},
|
||||
{
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
},
|
||||
{
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
},
|
||||
{
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
},
|
||||
{
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
},
|
||||
{
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
},
|
||||
{
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
},
|
||||
{
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
},
|
||||
{
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}
|
||||
],
|
||||
[MarkerType.ImsRnStationG]: [
|
||||
{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
},
|
||||
{
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
},
|
||||
{
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
},
|
||||
{
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
},
|
||||
{
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
},
|
||||
{
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
},
|
||||
{
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
},
|
||||
{
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
},
|
||||
{
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
},
|
||||
{
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
},
|
||||
{
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
},
|
||||
{
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}
|
||||
],
|
||||
[MarkerType.NRL]: [
|
||||
{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
},
|
||||
{
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
},
|
||||
{
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
},
|
||||
{
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
},
|
||||
{
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
},
|
||||
{
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
},
|
||||
{
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
}
|
||||
],
|
||||
[MarkerType.Car]: [
|
||||
{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
},
|
||||
{
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
},
|
||||
{
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
},
|
||||
{
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
},
|
||||
{
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
},
|
||||
{
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
},
|
||||
{
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
},
|
||||
{
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
},
|
||||
{
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
},
|
||||
{
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
},
|
||||
{
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
},
|
||||
{
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}
|
||||
],
|
||||
[MarkerType.Ship]: [
|
||||
{
|
||||
label: 'STATIONCODE',
|
||||
key: 'stationCode'
|
||||
},
|
||||
{
|
||||
label: 'STATIONID',
|
||||
key: 'stationId'
|
||||
},
|
||||
{
|
||||
label: 'COUNTRYCODE',
|
||||
key: 'countryCode'
|
||||
},
|
||||
{
|
||||
label: 'DATEBEGIN',
|
||||
key: 'dateBegin'
|
||||
},
|
||||
{
|
||||
label: 'DATEEND',
|
||||
key: 'dateEnd'
|
||||
},
|
||||
{
|
||||
label: 'DESCRIPTION',
|
||||
key: 'description'
|
||||
},
|
||||
{
|
||||
label: 'ELEVATION',
|
||||
key: 'elevation'
|
||||
},
|
||||
{
|
||||
label: 'LATITUDE',
|
||||
key: 'lat'
|
||||
},
|
||||
{
|
||||
label: 'LONGITUDE',
|
||||
key: 'lon'
|
||||
},
|
||||
{
|
||||
label: 'MODDATE',
|
||||
key: 'moddate'
|
||||
},
|
||||
{
|
||||
label: 'STATUS',
|
||||
key: 'status'
|
||||
},
|
||||
{
|
||||
label: 'TYPE',
|
||||
key: 'type'
|
||||
},
|
||||
{
|
||||
label: 'USED',
|
||||
key: 'used'
|
||||
},
|
||||
{
|
||||
label: 'PHD',
|
||||
key: 'phd'
|
||||
},
|
||||
{
|
||||
label: 'PHDF',
|
||||
key: 'phdf'
|
||||
},
|
||||
{
|
||||
label: 'MET',
|
||||
key: 'met'
|
||||
},
|
||||
{
|
||||
label: 'SOH',
|
||||
key: 'soh'
|
||||
},
|
||||
{
|
||||
label: 'PHDF+MET+SOH',
|
||||
key: 'phdMetSoh'
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user