fix(addUser): 姓名输入框补绑 blur,先输身份证后输姓名也能触发计算

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-09-01 16:11:04 +08:00
co-authored by Claude Opus 4.7
parent bbd6781a27
commit effd4f2068
+1 -1
View File
@@ -109,7 +109,7 @@
<text class="label-star">*</text> <text class="label-star">*</text>
</view> </view>
<view class="form-control"> <view class="form-control">
<input class="form-input" type="text" maxlength="20" placeholder="请填写昵称" placeholder-class="form-placeholder" value="{{ form.name }}" disabled="{{ readonly }}" bind:input="onNameInput" /> <input class="form-input" type="text" maxlength="20" placeholder="请填写昵称" placeholder-class="form-placeholder" value="{{ form.name }}" disabled="{{ readonly }}" bind:input="onNameInput" bind:blur="onNameBlur" />
</view> </view>
</view> </view>