From 6198994eada222e52e52af1b3f27003b40b353f0 Mon Sep 17 00:00:00 2001 From: tx <2622874537@qq.com> Date: Mon, 6 Jan 2025 15:33:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/src/main/AndroidManifest.xml | 2 + package-lock.json | 21 + package.json | 1 + src/components/DeviceControl.tsx | 8 +- src/navigation/HomeStack.tsx | 24 + src/navigation/types.tsx | 3 + src/utils/api.ts | 2 + src/views/Home/MiniMap.tsx | 7 +- src/views/Home/NormaIndex.tsx | 23 +- src/views/ProfileScreen.jsx | 58 +- src/views/device/deviceDetailSet.tsx | 2 +- src/views/device/deviceMap.tsx | 13 +- src/views/user/FranchisePage.tsx | 174 ++++++ src/views/user/StoreCenter.tsx | 154 +++++ src/views/user/Upuser.tsx | 65 ++ yarn.lock | 746 ++++++++++++++--------- 16 files changed, 955 insertions(+), 348 deletions(-) create mode 100644 src/views/user/FranchisePage.tsx create mode 100644 src/views/user/StoreCenter.tsx create mode 100644 src/views/user/Upuser.tsx diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 71ac678..503173d 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -27,6 +27,7 @@ android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" + android:theme="@style/LaunchTheme"> = ({ defaultDevice, onDeviceUp try { const response = await apiService.ring(defaultDevice.sn); + // const response = { code: 500 }; console.log('响铃API响应:', response); if (response.code != 200) { @@ -295,6 +296,8 @@ const DeviceControl: React.FC = ({ defaultDevice, onDeviceUp ) : ( <> + {/* */} + 连接成功 (); const createScreenOptions = (title: string): StackNavigationOptions => { @@ -70,6 +73,13 @@ export default function HomeStackNavigator({ navigation, route }: Props) { headerShown: false, }} /> + + + api.get('/common/qiniu/uploadInfo'), // 获取车型 getModelList: () => api.get('/appVerify/modelList'), + // 获取车型图片 + getmodelPicList: () => api.get('/app/modelPic/list'), // 获取帮助中心分类 getClassifyList: () => api.get('/app/classify/list'), // 获取帮助中心文章列表 diff --git a/src/views/Home/MiniMap.tsx b/src/views/Home/MiniMap.tsx index aace6d2..bd7ea41 100644 --- a/src/views/Home/MiniMap.tsx +++ b/src/views/Home/MiniMap.tsx @@ -38,7 +38,7 @@ const MiniMap: React.FC = ({ defaultDevice }) => { const diff = now - timestamp; if (diff < 60000) { // 小于1分钟 - return '刚刚'; + return '刚刚刚' } else if (diff < 3600000) { // 小于1小时 return `${Math.floor(diff / 60000)}分钟前`; } else if (diff < 86400000) { // 小于24小时 @@ -144,6 +144,7 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', marginBottom: rpx(8), + flexWrap: 'wrap', // 确保内容可以换行 }, cont_left_top_txt: { fontWeight: '500', @@ -155,6 +156,10 @@ const styles = StyleSheet.create({ fontWeight: '400', fontSize: rpx(24), color: '#808080', + flexShrink: 1, + flexWrap: 'wrap', + // 增加宽度以确保显示完整文本 + maxWidth: '80%', }, cont_left_bot: { fontWeight: '400', diff --git a/src/views/Home/NormaIndex.tsx b/src/views/Home/NormaIndex.tsx index 9b3ba30..bd83cde 100644 --- a/src/views/Home/NormaIndex.tsx +++ b/src/views/Home/NormaIndex.tsx @@ -215,19 +215,16 @@ const NormaIndex: React.FC = () => { 剩余里程 - {/* - - 110 - km - - - - 剩余里程 - - */} + + + diff --git a/src/views/ProfileScreen.jsx b/src/views/ProfileScreen.jsx index c052838..937164b 100644 --- a/src/views/ProfileScreen.jsx +++ b/src/views/ProfileScreen.jsx @@ -15,6 +15,7 @@ import { useAuth } from '../context/AuthContext'; import { rpx } from '../utils/rpx'; import { apiService } from '../utils/api'; import { auth } from '../utils/auth'; + const ProfileScreen = () => { const navigation = useNavigation(); const { setIsLoggedIn } = useAuth(); @@ -42,9 +43,7 @@ const ProfileScreen = () => { const handleLogout = async () => { try { - await auth.removeToken(); // 清除本地存储的 token - // setIsLoggedIn(false); // 更新登录状态 - // 不需要手动导航,因为 AppNavigator 会根据 isLoggedIn 自动处理导航 + await auth.removeToken(); getUserInfo(); } catch (error) { console.error('退出登录失败:', error); @@ -58,7 +57,6 @@ const ProfileScreen = () => { > - {/* 头部区域 */} { - {/* 管理与服务区域 */} 管理与服务 - {/* navigation.navigate('OrderList')} - > - - 我的订单 - */} - navigation.navigate('HelpCenterPage')} @@ -121,34 +107,46 @@ const ProfileScreen = () => { 意见和反馈 - {/* {userInfo.isAuthentication === false && ( - navigation.navigate('IdVerification')} + onPress={() => navigation.navigate('FranchisePage')} > - 实名认证 + 升级商户(车辆出租) - )} */} + )} - {/* {userInfo.userType === '02' && ( - navigation.navigate('MerchantPortal')} + {(userInfo.userType === '01' || userInfo.userType === '00') && userInfo.status === '2' && ( + navigation.navigate('Upuser')} > - 商户端 + 升级商户(审核中) - )} */} + )} + + {userInfo.userType === '02' && ( + navigation.navigate('StoreCenter')} + > + + 商户中心 + + )} - {/* 退出登录按钮 */}