From 743d89bdd784dee8bb32d9ae2e70fae2653aa528 Mon Sep 17 00:00:00 2001
From: liuwh <964324856@qq.com>
Date: Wed, 02 Jul 2025 18:49:28 +0800
Subject: [PATCH] fix:粤政易端修改2,3,4

---
 src/views/selfInspection/components/LocationPicker/index.jsx |   26 ++++++++++++--------------
 1 files changed, 12 insertions(+), 14 deletions(-)

diff --git a/src/views/selfInspection/components/LocationPicker/index.jsx b/src/views/selfInspection/components/LocationPicker/index.jsx
index d39c7a2..4e8aece 100644
--- a/src/views/selfInspection/components/LocationPicker/index.jsx
+++ b/src/views/selfInspection/components/LocationPicker/index.jsx
@@ -48,6 +48,7 @@
 
 	// 切换到手动填写
 	const handleManualInput = () => {
+		console.log('handleManualInput');
 		setIsManualInput(true);
 	};
 
@@ -126,19 +127,16 @@
 	];
 
 	return (
-		<>
-			<NavBarPage
-				title="纠纷发生地点"
-				leftContentFunc={() => history.goBack()}
-				rightContentFunc={handleManualInput}
-				rightChildren={
-					<>
-						<WriteEditOutlined />
-						手动填写
-					</>
-				}
-			/>
-
+		<NavBarPage
+			title="纠纷发生地点"
+			rightContentFunc={handleManualInput}
+			rightChildren={
+				<>
+					<WriteEditOutlined />
+					手动填写
+				</>
+			}
+		>
 			<div className="location-picker-container">
 				{!isManualInput ? (
 					<div className="placeholder-container">
@@ -160,7 +158,7 @@
 					</div>
 				)}
 			</div>
-		</>
+		</NavBarPage>
 	);
 };
 

--
Gitblit v1.8.0