广州矛调粤政易端
liuwh
2025-07-02 743d89bdd784dee8bb32d9ae2e70fae2653aa528
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>
   );
};