From ec6193939600ca7930193b1d5942b1700baf9e06 Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期五, 21 二月 2025 09:20:15 +0800 Subject: [PATCH] 1.巡检记录列表页的实现 2.巡检记录地图展示路径的详情页。 3.处理巡检记录详情页因打开同一个网址导致的webView不显示问题。 4.实现地图页搜索后的地图跳转功能。 5.巡检记录详情页数据加载的优化,默认加载本地数据,当本地没有数据时从服务端获取数据。 --- app/src/main/res/drawable/bottom_order_black.xml | 33 +++++++++++++++++++++++++++------ 1 files changed, 27 insertions(+), 6 deletions(-) diff --git a/app/src/main/res/drawable/bottom_order_black.xml b/app/src/main/res/drawable/bottom_order_black.xml index 049673d..453cf3c 100644 --- a/app/src/main/res/drawable/bottom_order_black.xml +++ b/app/src/main/res/drawable/bottom_order_black.xml @@ -4,23 +4,44 @@ android:viewportWidth="48" android:viewportHeight="48"> <path - android:pathData="M33.05,7H38C39.105,7 40,7.895 40,9V42C40,43.105 39.105,44 38,44H10C8.895,44 8,43.105 8,42L8,9C8,7.895 8.895,7 10,7H16H17V10H31V7H33.05Z" + android:pathData="M11,8L37,8A2,2 0,0 1,39 10L39,42A2,2 0,0 1,37 44L11,44A2,2 0,0 1,9 42L9,10A2,2 0,0 1,11 8z" android:strokeLineJoin="round" android:strokeWidth="4" android:fillColor="#00000000" - android:strokeColor="#333"/> + android:strokeColor="#000000"/> <path - android:pathData="M17,4h14v6h-14z" + android:pathData="M18,4V10" android:strokeLineJoin="round" android:strokeWidth="4" android:fillColor="#00000000" - android:strokeColor="#333" + android:strokeColor="#000000" android:strokeLineCap="round"/> <path - android:pathData="M27,19L19,27.001H29.004L21,35.002" + android:pathData="M30,4V10" android:strokeLineJoin="round" android:strokeWidth="4" android:fillColor="#00000000" - android:strokeColor="#333" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M16,19L32,19" + android:strokeLineJoin="round" + android:strokeWidth="4" + android:fillColor="#00000000" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M16,27L28,27" + android:strokeLineJoin="round" + android:strokeWidth="4" + android:fillColor="#00000000" + android:strokeColor="#000000" + android:strokeLineCap="round"/> + <path + android:pathData="M16,35H24" + android:strokeLineJoin="round" + android:strokeWidth="4" + android:fillColor="#00000000" + android:strokeColor="#000000" android:strokeLineCap="round"/> </vector> -- Gitblit v1.8.0