微信小程序项目模板文件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
924B

  1. <!--pages/login/login.wxml-->
  2. <view class="login_box">
  3. <form class="form_box" bindsubmit="submitForm">
  4. <view class="form-item {{item.warning?'warning':''}}" wx:for="{{formRules}}" wx:key="index">
  5. <text>{{item.title}}</text>
  6. <input type="{{item.type||'text'}}" placeholder="{{item.placeholder}}" value="{{form[index]}}"
  7. password="{{item.isPassword}}" data-name="{{index}}" bindinput="bindValue" name="{{index}}" bindblur="bindValue" />
  8. <text class="tips">{{item.tips}}</text>
  9. </view>
  10. <view class="check_contanier">
  11. <label class="check_lable" bindtap="checkboxChange">
  12. <checkbox checked="{{rememberChecked}}" class="check_box" />记住密码
  13. </label>
  14. </view>
  15. <button size="default" style="width: 100%; height: 80rpx;" class="login_btn" formType="submit">登 录</button>
  16. </form>
  17. </view>