| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <navbar parameter="{{parameter}}"></navbar>
- <view class="ChangePassword">
- <view class="phone">当前手机号:{{phone}}</view>
- <view class="list">
- <view class="item">
- <input
- type="password"
- placeholder="设置新密码"
- bindinput="inputgetName"
- data-name="password"
- placeholder-class="placeholder"
- />
- </view>
- <view class="item">
- <input
- type="password"
- placeholder="确认新密码"
- bindinput="inputgetName"
- data-name="qr_password"
- placeholder-class="placeholder"
- />
- </view>
- <view class="item acea-row row-between-wrapper">
- <input
- type="number"
- placeholder="填写验证码"
- placeholder-class="placeholder"
- bindinput="inputgetName"
- data-name="captcha"
- class="codeIput"
- />
- <button class="code font-color {{disabled === true ? 'on' : ''}}" disabled="{{disabled}}" bindtap="code">
- {{ timetext }}
- </button>
- </view>
- <view class="item acea-row row-between-wrapper" wx:if="{{imagesCode}}">
- <input
- type="text"
- placeholder="填写图片验证码"
- placeholder-class="placeholder"
- class="codeIput"
- bindinput="inputgetName"
- data-name="captchaimg"
- />
- <image src="{{httpUrl}}" class="images" bindtap="imagesCodeTap"></image>
- </view>
- </view>
- <view class="confirmBnt bg-color" bindtap="editPwd">确认修改</view>
- </view>
- <authorize bind:onLoadFun="onLoadFun"></authorize>
|