diff --git a/src/App.tsx b/src/App.tsx
index 69d2805..8066faf 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,81 +1,35 @@
import React, { useEffect } from 'react';
-import { Outlet, useLocation, useNavigate } from 'react-router';
-import { SafeArea, TabBar, Toast } from 'antd-mobile';
+import { Outlet } from 'react-router';
+import { Toast } from 'antd-mobile';
-import icon_1_s from './assets/tabIcon/icon_tab1_s.svg';
-import icon_1_u from './assets/tabIcon/icon_tab1_u.svg';
-// import icon_2_s from './assets/tabIcon/icon_tab2_s.svg';
-// import icon_2_u from './assets/tabIcon/icon_tab2_u.svg';
-import icon_3_s from './assets/tabIcon/icon_tab3_s.svg';
-import icon_3_u from './assets/tabIcon/icon_tab3_u.svg';
-import icon_4_s from './assets/tabIcon/icon_tab4_s.svg';
-import icon_4_u from './assets/tabIcon/icon_tab4_u.svg';
import Bridge, { bridgeOb, emitBridgeEvent } from './utils/bridge';
import { useAppDispatch, useAppSelector } from './utils/hooks';
import { addNewPoint, updateTaskState } from './store/features/measureSlice';
-import { updateBleList, updateDevice, updateSyncProgress } from './store/features/contextSlice';
+import {
+ refreshStationList,
+ updateBleList,
+ updateDevice,
+ updateSyncProgress,
+} from './store/features/contextSlice';
import { createWebSocket, sharedWsUrl } from './services/socket';
-import { fetchOrgTree, fetchRailTypes, syncBaseData, updateSyncBaseProgress } from './store/features/baseData';
-
-const BottomBar = () => {
- const navigate = useNavigate();
- const location = useLocation();
- const { pathname } = location;
- const setRouteActive = (value: string) => {
- navigate(value, { replace: true });
- };
-
- const tabs = [
- {
- key: '/home/measure',
- title: '测量',
- icon_s: icon_1_s,
- icon_n: icon_1_u,
- },
- // {
- // key: '/home/setting',
- // title: '设置',
- // icon_s: icon_2_s,
- // icon_n: icon_2_u,
- // },
- {
- key: '/home/bluetooth',
- title: '蓝牙',
- icon_s: icon_3_s,
- icon_n: icon_3_u,
- },
- {
- key: '/home/mine',
- title: '我的',
- icon_s: icon_4_s,
- icon_n: icon_4_u,
- },
- ];
-
- return (
- :
- }
- title={item.title}
- />
- ))}
-