parent
f2e5aac6fe
commit
1b5ac4f362
|
|
@ -374,10 +374,14 @@ const ViewModalComponent = (props) => {
|
||||||
{
|
{
|
||||||
label: "位置",
|
label: "位置",
|
||||||
children: (
|
children: (
|
||||||
|
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
||||||
|
<span>{info.longitude}</span>
|
||||||
|
<span>{info.latitude}</span>
|
||||||
<LocationIcon onClick={() => {
|
<LocationIcon onClick={() => {
|
||||||
setMapVisible(true);
|
setMapVisible(true);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{ label: "口门进入区域", children: info.inDirectionAreaName },
|
{ label: "口门进入区域", children: info.inDirectionAreaName },
|
||||||
|
|
|
||||||
|
|
@ -301,10 +301,14 @@ const InfoModalComponent = (props) => {
|
||||||
{
|
{
|
||||||
label: "地理位置",
|
label: "地理位置",
|
||||||
children: (
|
children: (
|
||||||
|
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
||||||
|
<span>{info.longitude}</span>
|
||||||
|
<span>{info.latitude}</span>
|
||||||
<LocationIcon onClick={() => {
|
<LocationIcon onClick={() => {
|
||||||
setMapVisible(true);
|
setMapVisible(true);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{ label: "闸机状态", children: getLabelName({ list: FARE_GATE_STATUS_ENUM, status: info.gateStatus }) },
|
{ label: "闸机状态", children: getLabelName({ list: FARE_GATE_STATUS_ENUM, status: info.gateStatus }) },
|
||||||
|
|
|
||||||
|
|
@ -276,10 +276,14 @@ const InfoModalComponent = (props) => {
|
||||||
{
|
{
|
||||||
label: "地理位置",
|
label: "地理位置",
|
||||||
children: (
|
children: (
|
||||||
|
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
||||||
|
<span>{info.longitude}</span>
|
||||||
|
<span>{info.latitude}</span>
|
||||||
<LocationIcon onClick={() => {
|
<LocationIcon onClick={() => {
|
||||||
setMapVisible(true);
|
setMapVisible(true);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|
|
||||||
|
|
@ -308,10 +308,14 @@ function InfoModalComponent(props) {
|
||||||
{
|
{
|
||||||
label: "位置",
|
label: "位置",
|
||||||
children: (
|
children: (
|
||||||
|
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
|
||||||
|
<span>{info.longitude}</span>
|
||||||
|
<span>{info.latitude}</span>
|
||||||
<LocationIcon onClick={() => {
|
<LocationIcon onClick={() => {
|
||||||
setMapVisible(true);
|
setMapVisible(true);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue