| 1234567891011121314151617181920212223242526272829303132333435 |
- <!--index.wxml-->
- <view class="login-container" style='height:{{windowHeight}}px;'>
- <!-- 标题 -->
- <view class="tit_box">
- <text class="tit_box-one">欢迎来到云飞平台</text>
- <text class="tit_box-two">赶快登录吧</text>
- </view>
- <!-- 标题 -->
- <!-- 表单 -->
- <form bindsubmit="formSubmit">
- <view class="form-box">
- <!-- 账号 -->
- <view class="section-account">
- <view class="section__title">账号</view>
- <input class="login-input" type="text" name="userName" value="{{userName}}" placeholder="请输入账号">请输入账号</input>
- </view>
- <!-- 密码 -->
- <view class="section-pad">
- <view class="section__title">密码</view>
- <input type="password" name="userPassword" value="{{userPassword}}" class="login-input" placeholder="请输入密码"></input>
- </view>
- <!-- 按钮 -->
- <!-- <button type='primary' bindtap='login' class="section-btn">登录</button> -->
- <button form-type="submit" type='primary' class="section-btn">登录</button>
- </view>
- </form>
- <!-- 表单 -->
- </view>
|