东港区
diff --git a/src/pages/Container/Map/components/Content/port/Index/index.js b/src/pages/Container/Map/components/Content/port/Index/index.js
index f866f5c..c124a9a 100644
--- a/src/pages/Container/Map/components/Content/port/Index/index.js
+++ b/src/pages/Container/Map/components/Content/port/Index/index.js
@@ -20,7 +20,7 @@ import "./index.less";
const block3OptionsNavList = ["分公司统计", "相关方单位统计"];
function Index() {
- const { currentPort, area, currentBranchOffice } = useContext(Context);
+ const { currentPort, portArea, currentBranchOffice } = useContext(Context);
const [block1OptionsList, setBlock1OptionsList] = useState([
{ label: "分公司企业数", img: img3, count: 0 },
diff --git a/src/pages/Container/Map/components/Content/port/QiXiang/index.js b/src/pages/Container/Map/components/Content/port/QiXiang/index.js
index 28f7c5a..2129aa9 100644
--- a/src/pages/Container/Map/components/Content/port/QiXiang/index.js
+++ b/src/pages/Container/Map/components/Content/port/QiXiang/index.js
@@ -18,7 +18,7 @@ import "./index.less";
const block3OptionsNavList = ["传感器数据列表", "报警信息列表"];
const QiXiang = () => {
- const { currentPort, area, currentBranchOffice } = useContext(Context);
+ const { currentPort, portArea, currentBranchOffice } = useContext(Context);
const [block1OptionsList, setBlock1OptionsList] = useState([
{ title: "风速监测", img: qixiang_icon1, count: "-" },
{ title: "温度监测", img: qixiang_icon2, count: "-" },
diff --git a/src/pages/Container/Map/components/Content/port/WeiXian/index.js b/src/pages/Container/Map/components/Content/port/WeiXian/index.js
index 7ebf135..b35c0c4 100644
--- a/src/pages/Container/Map/components/Content/port/WeiXian/index.js
+++ b/src/pages/Container/Map/components/Content/port/WeiXian/index.js
@@ -16,7 +16,7 @@ import { initEcharts1 } from "./echarts";
import "./index.less";
const WeiXian = () => {
- const { currentPort, area, currentBranchOffice } = useContext(Context);
+ const { currentPort, portArea, currentBranchOffice } = useContext(Context);
const [block3List, setBlock3List] = useState([
{ WORK_TYPE: "动火作业", STATUS_NAME: "现场负责人", USER_NAME: "李长健" },
{ WORK_TYPE: "动火作业", STATUS_NAME: "延时监火", USER_NAME: "运行乙班" },
diff --git a/src/pages/Container/Map/components/Content/port/XiaoFang/index.js b/src/pages/Container/Map/components/Content/port/XiaoFang/index.js
index f10adc4..96931c1 100644
--- a/src/pages/Container/Map/components/Content/port/XiaoFang/index.js
+++ b/src/pages/Container/Map/components/Content/port/XiaoFang/index.js
@@ -8,7 +8,7 @@ import "./index.less";
const { Option } = Select;
const XiaoFang = () => {
- const { currentPort, area, currentBranchOffice } = useContext(Context);
+ const { currentPort, portArea, currentBranchOffice } = useContext(Context);
const [form] = Form.useForm();
const [deviceTypeList, setDeviceTypeList] = useState([
{ name: "地下消防栓栓体", bianma: "dxxfsst" },
diff --git a/src/pages/Container/Map/components/Content/port/ZhongDian/index.js b/src/pages/Container/Map/components/Content/port/ZhongDian/index.js
index 9db1d19..6a90299 100644
--- a/src/pages/Container/Map/components/Content/port/ZhongDian/index.js
+++ b/src/pages/Container/Map/components/Content/port/ZhongDian/index.js
@@ -10,7 +10,7 @@ import { Context } from "~/pages/Container/Map/js/context";
import "./index.less";
const ZhongDian = () => {
- const { currentPort, area, currentBranchOffice } = useContext(Context);
+ const { currentPort, portArea, currentBranchOffice } = useContext(Context);
const [block1OptionsList, setBlock1OptionsList] = useState([
{ lable: "视频总数", count: 0 },
diff --git a/src/pages/Container/Map/components/Header/index.js b/src/pages/Container/Map/components/Header/index.js
index 32a7b84..d4183d8 100644
--- a/src/pages/Container/Map/components/Header/index.js
+++ b/src/pages/Container/Map/components/Header/index.js
@@ -16,7 +16,7 @@ const headerAnimation = {
};
function Header() {
- const { currentPort, currentBranchOffice, mapMethods, area, headerTitle, actions } = useContext(Context);
+ const { currentPort, currentBranchOffice, mapMethods, portArea, headerTitle, actions } = useContext(Context);
const isPortTitle = headerTitle === "秦港股份安全监管平台";
@@ -48,7 +48,7 @@ function Header() {
mapMethods.current.removeFourColorDiagram();
mapMethods.current.removeWall();
// setTimeout(() => {
- mapMethods.current.addBranchOfficePoint(area);
+ mapMethods.current.addBranchOfficePoint(portArea);
// }, 2000);
}
else if (currentPort) {
diff --git a/src/pages/Container/Map/index.js b/src/pages/Container/Map/index.js
index b3b810e..6244f3b 100644
--- a/src/pages/Container/Map/index.js
+++ b/src/pages/Container/Map/index.js
@@ -36,7 +36,7 @@ function Map(props) {
selectBranchOffice: data => dispatch({ type: MAP_ACTION.SELECT_BRANCH_OFFICE, payload: data }),
selectMark: data => dispatch({ type: MAP_ACTION.SELECT_MARK, payload: data }),
resetMark: () => dispatch({ type: MAP_ACTION.RESET_MARK }),
- setArea: area => dispatch({ type: MAP_ACTION.SET_AREA, payload: area }),
+ setPortArea: portArea => dispatch({ type: MAP_ACTION.SET_PORT_AREA, payload: portArea }),
setBottomUtilsIndex: index => dispatch({ type: MAP_ACTION.SET_BOTTOM_UTILS_INDEX, payload: index }),
resetBottomUtils: () => dispatch({ type: MAP_ACTION.RESET_BOTTOM_UTILS }),
resetRightUtils: () => dispatch({ type: MAP_ACTION.RESET_RIGHT_UTILS }),
diff --git a/src/pages/Container/Map/js/context.js b/src/pages/Container/Map/js/context.js
index 5823c61..9abcb0d 100644
--- a/src/pages/Container/Map/js/context.js
+++ b/src/pages/Container/Map/js/context.js
@@ -7,7 +7,7 @@ export const initialMapState = {
coverMaskVisible: false,
currentPort: "",
currentBranchOffice: "",
- area: "",
+ portArea: "",
bottomUtilsCurrentIndex: "",
pureMap: false,
headerTitle: "秦港股份安全监管平台",
@@ -22,7 +22,7 @@ export const MAP_ACTION = {
SELECT_BRANCH_OFFICE: "selectBranchOffice",
SELECT_MARK: "selectMark",
RESET_MARK: "resetMark",
- SET_AREA: "setArea",
+ SET_PORT_AREA: "setPortArea",
SET_BOTTOM_UTILS_INDEX: "setBottomUtilsIndex",
RESET_BOTTOM_UTILS: "resetBottomUtils",
RESET_RIGHT_UTILS: "resetRightUtils",
@@ -66,8 +66,8 @@ export function mapReducer(state, action) {
modalData: {},
};
}
- case MAP_ACTION.SET_AREA:
- return { ...state, area: action.payload };
+ case MAP_ACTION.SET_PORT_AREA:
+ return { ...state, portArea: action.payload };
case MAP_ACTION.SET_BOTTOM_UTILS_INDEX:
return { ...state, bottomUtilsCurrentIndex: action.payload };
case MAP_ACTION.RESET_BOTTOM_UTILS:
diff --git a/src/pages/Container/Map/js/mapMethods.js b/src/pages/Container/Map/js/mapMethods.js
index ce53313..77cdb08 100644
--- a/src/pages/Container/Map/js/mapMethods.js
+++ b/src/pages/Container/Map/js/mapMethods.js
@@ -467,7 +467,7 @@ export default function useMapMethods(viewerRef) {
};
// 添加分公司点
- const addBranchOfficePoint = async (area = "", pointInfo = null) => {
+ const addBranchOfficePoint = async (portArea = "", pointInfo = null) => {
mitt.emit(changeCoverMaskVisibleMittKey, true);
let branchOfficePoint = [];
if (!pointInfo) {