|
@@ -315,11 +315,11 @@ export default function YeZhuRenZheng () {
|
315
|
315
|
</view>
|
316
|
316
|
<view className='flex-h'>
|
317
|
317
|
<text className='iconfont iconshouji'></text>
|
318
|
|
- <Input type='idcard' className='flex-item' placeholder='请输入您的手机号码' value={FormData.Phone} onInput={(e) => { setFormData({ ...FormData, Phone: e.detail.value }) }}></Input>
|
|
318
|
+ <Input type='number' className='flex-item' placeholder='请输入您的手机号码' value={FormData.Phone} onInput={(e) => { setFormData({ ...FormData, Phone: e.detail.value }) }}></Input>
|
319
|
319
|
</view>
|
320
|
320
|
<view className='flex-h'>
|
321
|
321
|
<text className='iconfont iconyanzhengma'></text>
|
322
|
|
- <Input type='idcard' className='flex-item' placeholder='请输入验证码' value={PhoneCode} onInput={(e) => { setPhoneCode(e.detail.value) }}></Input>
|
|
322
|
+ <Input type='number' className='flex-item' placeholder='请输入验证码' value={PhoneCode} onInput={(e) => { setPhoneCode(e.detail.value) }}></Input>
|
323
|
323
|
<text className={CodeTimerNum - 0 === 60 ? 'active' : ''} onClick={ToGetPhoneCode}>{CodeTimerNum - 0 === 60 ? `获取验证码` : `${CodeTimerNum > 9 ? `${CodeTimerNum}s后再次获取` : `0${CodeTimerNum}s后再次获取`}`}</text>
|
324
|
324
|
</view>
|
325
|
325
|
<view className='flex-h'>
|