chore: docs update + docker-compose + H5 login

This commit is contained in:
Simon
2026-07-09 13:46:48 +08:00
parent db70a3a6a8
commit 3d152fc8eb
5 changed files with 48 additions and 5 deletions
+4 -4
View File
@@ -21,10 +21,10 @@
<div class="login-form">
<van-field
v-model="employeeId"
label="员工ID"
placeholder="请输入企微员工 UserID"
label="员工账号"
placeholder="请输入企微员工账号(UserID"
clearable
:rules="[{ required: true, message: '请输入员工ID' }]"
:rules="[{ required: true, message: '请输入员工账号' }]"
@keyup.enter="handleLogin"
/>
@@ -156,7 +156,7 @@ function handleResetPassword(): void {
async function handleLogin(): Promise<void> {
const id = employeeId.value.trim()
if (!id) {
showToast('请输入员工ID')
showToast('请输入员工账号')
return
}