Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <!--pages/login/login.wxml-->
- <view class="login_box">
- <form class="form_box" bindsubmit="submitForm">
- <view class="form-item {{item.warning?'warning':''}}" wx:for="{{formRules}}" wx:key="index">
- <text>{{item.title}}</text>
- <input type="{{item.type||'text'}}" placeholder="{{item.placeholder}}" value="{{form[index]}}"
- password="{{item.isPassword}}" data-name="{{index}}" bindinput="bindValue" name="{{index}}" bindblur="bindValue" />
- <text class="tips">{{item.tips}}</text>
- </view>
- <view class="check_contanier">
- <label class="check_lable" bindtap="checkboxChange">
- <checkbox checked="{{rememberChecked}}" class="check_box" />记住密码
- </label>
- </view>
- <button size="default" style="width: 100%; height: 80rpx;" class="login_btn" formType="submit">登 录</button>
- </form>
- </view>
|