From d16a0fc54586a32b845ab65358b46d90e1561e40 Mon Sep 17 00:00:00 2001 From: 12451 <12451@example.com> Date: Thu, 2 Jul 2026 17:56:18 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=87=8D=E6=96=B0=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=EF=BC=8C=E6=B7=B1=E8=89=B2=E7=A7=91?= =?UTF-8?q?=E6=8A=80=E9=A3=8E=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- software/web/src/h5/pages/login.tsx | 109 +++++++++++++++++----------- 1 file changed, 65 insertions(+), 44 deletions(-) diff --git a/software/web/src/h5/pages/login.tsx b/software/web/src/h5/pages/login.tsx index 9a678c1..c3e861d 100644 --- a/software/web/src/h5/pages/login.tsx +++ b/software/web/src/h5/pages/login.tsx @@ -1,6 +1,6 @@ /** - * H5 登录页 - * 手机号 + 密码登录,支持重定向到目标页面 + * 登录页 + * 深色科技风格,与产品介绍页统一 */ import { useState } from 'react'; import { useNavigate, useSearchParams } from 'react-router-dom'; @@ -31,50 +31,71 @@ export default function H5Login() { }; return ( -
- {/* 顶部品牌区 */} -
-
- P +
+ {/* 背景网格 */} +
+ + {/* 内容 */} +
+ {/* Logo */} +
+
+ + + +
+

安知充

+

充电柜管理系统

+
+ + {/* 登录表单 */} +
+
+ setPhone(e.target.value)} + autoComplete="tel" + /> +
+
+ setPassword(e.target.value)} + autoComplete="current-password" + /> +
+ + {error && ( +

{error}

+ )} + + +
+ + {/* 底部信息 */} +
+

无锡艾动电子有限公司

-

安知充

-

充电柜管理系统

- - {/* 登录表单 */} -
-
- setPhone(e.target.value)} - autoComplete="tel" - /> -
-
- setPassword(e.target.value)} - autoComplete="current-password" - /> -
- - {error &&

{error}

} - - -
); }