123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- <template>
- <!-- pages/setPassword/setPassword.wxml -->
- <view class="container">
- <view class="set-container">
- <form @submit="bindSubmit">
- <view class="form-container">
- <view class="form-item">
- <image src="/static/resource/images/shouji.png" class="form-img"></image>
- <input type="text" name="username" placeholder="请输入手机号" class="form-input" :value="username" @input="bindUsernameInput" />
- <!-- image wx:if="{{ username }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindUsernameClear"></image -->
- </view>
- <view class="form-item code-form">
- <image src="/static/resource/images/duanxin.png" class="form-img"></image>
- <input type="text" name="code" placeholder="请输入验证码" class="form-input" />
- <view class="code-button" @tap="bindSendCode">
- <text class="code-text">{{ sec == 0 ? '获取验证码' : sec + 's后重发' }}</text>
- </view>
- <!-- image wx:if="{{ username }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindUsernameClear"></image -->
- </view>
- <view class="form-item">
- <image src="/static/resource/images/mima.png" class="form-img"></image>
- <input type="text" password name="password" placeholder="请输入密码" class="form-input" />
- <!-- image wx:if="{{ password }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindPasswordClear"></image -->
- </view>
- <view class="form-item">
- <image src="/static/resource/images/mima.png" class="form-img"></image>
- <input type="text" password name="password2" placeholder="请确认密码" class="form-input" />
- <!-- image wx:if="{{ password }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindPasswordClear"></image -->
- </view>
- <view class="form-btn">
- <button class="login-btn" form-type="submit">确定</button>
- </view>
- </view>
- </form>
- </view>
- </view>
- </template>
- <script>
- // pages/setPassword/setPassword.js
- var config = require('../../common/config.js');
- var http = require('../../common/http.js');
- var common = require('../../common/common.js');
- var storage = require('../../common/storage.js');
- export default {
- data() {
- return {
- username: '',
- sec: 0,
- secTimer: null
- };
- }
- /**
- * 生命周期函数--监听页面加载
- */,
- onLoad: function (options) {},
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {},
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {},
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {},
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {},
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {},
- methods: {
- bindUsernameInput: function (e) {
- this.setData({
- username: e.detail.value
- });
- },
- bindSendCode() {
- if (this.sec == 0) {
- this.setData({
- sec: 60
- });
- this.secTimer = setInterval(() => {
- if (this.sec > 0) {
- this.setData({
- sec: this.sec - 1
- });
- } else {
- clearInterval(this.secTimer);
- }
- }, 1000);
- http.postApi(
- config.API_USER_VERIFY_CODE,
- {
- phone: this.username
- },
- (resp) => {
- if (resp.data.code === 200) {
- } else {
- common.simpleToast(resp.data.msg);
- }
- }
- );
- }
- },
- bindSubmit(e) {
- console.log(e.detail.value);
- const username = e.detail.value.username;
- const code = e.detail.value.code;
- const password = e.detail.value.password;
- const password2 = e.detail.value.password2;
- if (common.isEmpty(username)) {
- common.simpleToast('请输入手机号');
- return;
- }
- if (common.isEmpty(code)) {
- common.simpleToast('请输入验证码');
- return;
- }
- if (common.isEmpty(password)) {
- common.simpleToast('请输入密码');
- return;
- }
- if (password != password2) {
- common.simpleToast('两次输入密码不一致');
- return;
- }
- http.postApi(
- config.API_USER_CHANGE_PASSWORD,
- {
- phone: username,
- code: code,
- password: password
- },
- (resp) => {
- if (resp.data.code === 200) {
- common.simpleToast('设置成功');
- setTimeout(function () {
- uni.navigateBack({
- delta: 1
- });
- }, 1500);
- } else {
- common.simpleToast(resp.data.msg);
- }
- }
- );
- }
- }
- };
- </script>
- <style>
- @import './setPassword.css';
- </style>
|