From ff8b172f7ebd15b9583a28cae44777156351d699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=AD=E5=BA=86=E6=B3=B0?= <12369755+htcloud1@user.noreply.gitee.com> Date: Tue, 18 Aug 2026 01:24:21 +0800 Subject: [PATCH] =?UTF-8?q?refactor(executor/account):=20=E9=87=8D?= =?UTF-8?q?=E5=86=99=E4=B8=BA=E4=B8=8E=20manager/Accounts.vue=20=E5=AE=8C?= =?UTF-8?q?=E5=85=A8=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原差异 (现在都消除了): - breadcrumb: '账号信息' → '账号管理' - 删 page-sub 副标题 - form 字段: name/phone/oldPwd/newPwd/confirmPwd → nickName/phonenumber/oldPassword/newPassword/confirmPassword - 加 :rules + ref="formRef" (之前无校验, 只占位 ElMessage) - 真调用 /system/user/profile (PUT) + /system/user/profile/updatePwd (之前只占位) - onSave 用 formRef.validate + saving loading - onMounted 调 loadProfile() (之前从 store.user 读, 没有 PUT 接口) - account-form max-width 520 → 600 - 加 filter-tip 密码长度提示 - 加 .page-card max-width 1200px --- ry-vue3/src/views/executor/Account.vue | 119 +++++++++++++------------ 1 file changed, 63 insertions(+), 56 deletions(-) diff --git a/ry-vue3/src/views/executor/Account.vue b/ry-vue3/src/views/executor/Account.vue index 2ec1129..e9f4e12 100644 --- a/ry-vue3/src/views/executor/Account.vue +++ b/ry-vue3/src/views/executor/Account.vue @@ -1,76 +1,83 @@ - 首页 / 账号信息 - 管理账号信息, 修改密码或手机号 + 首页 / 账号管理 - - - - - - - - - - - - - - - - - - 保存 - 取消 - + + + + + + + + * 密码长度 6-20 位,支持数字、字母、特殊字符;留空表示不修改密码 + 保存取消 \ No newline at end of file
管理账号信息, 修改密码或手机号