1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view
- class="logs_content"
- style="left:{{openlog?'0rpx':'100%'}};"
- >
- <image
- class="logs_back"
- bindtap="closeLog"
- src="../../img/close.png"
- />
- <view class="logs_welcome">欢迎来到第一好车
- </view>
- <view class="logs_welcome_withoutlog">无需注册,急速登录
- </view>
- <input
- class="logs_phone_num"
- type="text"
- confirm-type="done"
- placeholder="请输入手机号"
- placeholder-class="logplaceh"
- bindinput="phoneInput"
- />
- <view class="logs_code_c">
- <input
- class="logs_code_num"
- type="text"
- confirm-type="done"
- placeholder="短信验证码"
- placeholder-class="logplaceh"
- maxlength="11"
- bindblur="codeInput"
- />
- <view
- class="get_code_bt {{codeenable?'active':''}}"
- bindtap="getCode"
- >{{codebtword}}</view>
- </view>
- <view
- class="logs_sub_b {{logenable?'active':''}}"
- bindtap="logIn"
- >
- 登录
- </view>
- </view>
|