prevention/package_B/page/changePassword/index.wxml

12 lines
748 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--package_B/page/changePassword/index.wxml-->
<view class="change_container">
<form class="form_box" bindsubmit="submitForm">
<view class="form_item {{item.warning?'warning':''}}" wx:for="{{formRules}}" wx:key="index">
<text class="input_label">{{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>
<button size="default" style="width: 540rpx; height: 80rpx;" class="reset_password" formType="submit">确定</button>
</form>
</view>