1234567891011121314151617181920212223242526272829303132 |
- <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
- <view class="home">
- <view class="main">
- <text class="title">
- <text>您好,</text>
- <text>欢迎来到吉企银通</text>
- </text>
-
- <view class="form">
- <form bindsubmit="formSubmit" bindreset="formReset">
- <view class='input-content'>
- <view class='input-col'>
- <input type='number' value="{{phone}}" name="phone" placeholder='请输入您本人的手机号码' maxlength="11" placeholder-style="color:#888888;"></input>
- </view>
- <view class='input-col' style='border-bottom:none'>
- <input type='text' value="{{password}}" password name="password" placeholder='请输入密码' placeholder-style="color:#888888;"></input>
- </view>
- </view>
- <view class="unBtnPass">
- <button bindtap="unBtnPass">忘记密码?</button>
- </view>
- <view class="save" >
- <button form-type="submit" hover-class="green">登录</button>
- <!-- <button class='save-btn' bindtap="fanhui" >返回</button> -->
- </view>
- <view class="register">
- <button bindtap="registerBtn">立即注册</button>
- </view>
- </form>
- </view>
- </view>
- </view>
|