41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
|
|
// 点击港口点位
|
||
|
|
export const clickPortPointMittKey = Symbol("clickPortPoint");
|
||
|
|
// 点击分公司点位
|
||
|
|
export const clickBranchOfficePointMittKey = Symbol("clickBranchOfficePoint");
|
||
|
|
// 点击标记点位
|
||
|
|
export const clickMarkPointMittKey = Symbol("clickMarkPoint");
|
||
|
|
// 点击左上角返回
|
||
|
|
export const clickBackMittKey = Symbol("clickBack");
|
||
|
|
// 重新执行底部工具栏动画
|
||
|
|
export const changeBottomUtilsAnimationMittKey = Symbol(
|
||
|
|
"changeBottomUtilsAnimation",
|
||
|
|
);
|
||
|
|
// 重置底部工具栏当前索引
|
||
|
|
export const resetBottomCurrentIndexMittKey = Symbol(
|
||
|
|
"resetBottomCurrentIndex",
|
||
|
|
);
|
||
|
|
// 重置所有底部工具栏选中状态
|
||
|
|
export const resetAllBottomUtilsCheckMittKey = Symbol(
|
||
|
|
"resetAllBottomUtilsCheck",
|
||
|
|
);
|
||
|
|
// 初始化底部工具栏
|
||
|
|
export const initBottomUtilsMittKey = Symbol("initBottomUtilsMittKey");
|
||
|
|
// 改变覆盖蒙版显隐
|
||
|
|
export const changeCoverMaskVisibleMittKey = Symbol("changeCoverMaskVisible");
|
||
|
|
// 改变内容动画显隐
|
||
|
|
export const changeContentAnimationKeyMittKey = Symbol(
|
||
|
|
"changeContentAnimationKey",
|
||
|
|
);
|
||
|
|
// 改变人员轨迹选择窗口显隐
|
||
|
|
export const changePeopleTrajectorySelectVisibleMittKey = Symbol(
|
||
|
|
"changePeopleTrajectorySelectVisible",
|
||
|
|
);
|
||
|
|
// 将人员定位列表提供给人员轨迹选择窗口
|
||
|
|
export const providePeoplePositionListMittKey = Symbol(
|
||
|
|
"providePeoplePositionList",
|
||
|
|
);
|
||
|
|
// 删除人员轨迹点位
|
||
|
|
export const deletePeoplePositionPointMittKey = Symbol(
|
||
|
|
"deletePeoplePositionPoint",
|
||
|
|
);
|