Jelajahi Sumber

fix(mini-ui): 注释掉登录页面的用户协议声明以通过小程序审核

- 企业小程序登录页:注释掉"登录即表示同意《用户协议》和《隐私政策》"
- 人才小程序登录页:注释掉"登录即表示您同意用户协议和隐私政策"
- 原因:小程序审核要求,暂时隐藏协议声明

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
yourname 8 jam lalu
induk
melakukan
4cce70664b

+ 3 - 3
mini-ui-packages/mini-enterprise-auth-ui/src/pages/login/Login.tsx

@@ -199,13 +199,13 @@ export default function Login() {
           <Text className="text-sm text-blue-500">忘记密码?</Text>
         </View>
 
-        {/* 协议声明 - 对照原型第254-256行 */}
-        <View className="mt-12 text-center text-gray-500 text-sm">
+        {/* 协议声明 - 对照原型第254-256行 - 暂时注释掉以通过小程序审核 */}
+        {/* <View className="mt-12 text-center text-gray-500 text-sm">
           <Text>登录即表示同意</Text>
           <Text className="text-blue-500">《用户协议》</Text>
           <Text>和</Text>
           <Text className="text-blue-500">《隐私政策》</Text>
-        </View>
+        </View> */}
       </View>
     </View>
   )

+ 3 - 3
mini-ui-packages/rencai-auth-ui/src/pages/LoginPage/LoginPage.tsx

@@ -143,12 +143,12 @@ export const LoginPage: React.FC = () => {
           </View>
         </View>
 
-        {/* 底部说明 */}
-        <View className="mt-8 text-center">
+        {/* 底部说明 - 暂时注释掉以通过小程序审核 */}
+        {/* <View className="mt-8 text-center">
           <Text className="text-xs text-white/60">
             登录即表示您同意用户协议和隐私政策
           </Text>
-        </View>
+        </View> */}
       </View>
     </View>
   )