| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 | <template>  <view class="container">    <view class="unp-header">      <view class="unp-logo">        <u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar>      </view>    </view>    <view class="unp-box">      <u--form class="unp-form" labelPosition="left" :model="formData" :rules="rules" ref="form">        <u-form-item label="账号" prop="username" borderBottom ref="item-username">          <u-input type="text" maxlength="20" v-model="formData.username" clearable placeholder="账号由数字和字母组成" border="none" @change="handleUsernameChange"></u-input>        </u-form-item>        <u-gap height="20"></u-gap>        <u-form-item label="验证码" prop="code" labelWidth="80" borderBottom>          <u--input type="number" maxlength="6" v-model="formData.code" border="none" placeholder="请填写验证码"></u--input>          <u-button slot="right" @tap="getCode" :text="tips" type="success" size="mini" :disabled="codeDisabled"></u-button>          <u-code ref="uCode" @change="codeChange" seconds="60" @start="codeDisabled = true" @end="codeDisabled = false"></u-code>        </u-form-item>        <u-gap height="20"></u-gap>        <u-form-item label="密码" prop="password" borderBottom ref="item-password">          <u-input :type="inputType" maxlength="20" v-model="formData.password" placeholder="新密码由数字、字母和符号组成" border="none" @change="handlePasswordChange">            <template slot="suffix">              <u-icon v-if="inputType === 'password'" size="20" color="#666666" name="eye-fill" @click="inputType = 'text'"></u-icon>              <u-icon v-if="inputType === 'text'" size="20" color="#666666" name="eye-off" @click="inputType = 'password'"></u-icon>            </template>          </u-input>        </u-form-item>        <view class="lk-group">          <!-- 占位 -->        </view>        <u-button            type="error"            text="重置密码"            customStyle="margin-top: 50px"            @click="handleSubmit"        ></u-button>        <u-gap height="20"></u-gap>        <u-button type="info" text="返回" @click="navigateBack()"></u-button>      </u--form>    </view>  </view></template><script>export default {  data() {    return {      codeDisabled: false,      tips: '',      inputType: 'password',      formData: {        username: '',        code: '',        password: '',      },      rules: {        'username': {          type: 'string',          max: 20,          required: true,          message: '请输入您的账号',          trigger: ['blur', 'change']        },        'code': {          type: 'number',          max: 6,          required: true,          message: '请输入验证码',          trigger: ['blur', 'change']        },        'password': {          type: 'string',          max: 20,          required: true,          message: '请输入您的新密码',          trigger: ['blur', 'change']        }      }    }  },  onLoad() {  },  methods: {    handleUsernameChange(e){      let str = uni.$u.trim(e, 'all');      this.$nextTick(() => {        this.formData.username = str      })    },    handlePasswordChange(e){      let str = uni.$u.trim(e, 'all');      this.$nextTick(() => {        this.formData.password = str      })    },    codeChange(text) {      this.tips = text;    },    getCode() {      if (this.$refs.uCode.canGetCode) {        // 模拟向后端请求验证码        uni.showLoading({          title: '正在获取验证码'        })        setTimeout(() => {          uni.hideLoading();          // 这里此提示会被this.start()方法中的提示覆盖          uni.$u.toast('验证码已发送');          // 通知验证码组件内部开始倒计时          this.$refs.uCode.start();        }, 2000);      } else {        uni.$u.toast('倒计时结束后再发送');      }    },    handleSubmit() {      this.$refs.form.validate().then(res => {        uni.$u.toast('点击了重置密码')      }).catch(err => {      })    },    navigateBack() {      uni.navigateBack()    }  }}</script><style lang="scss" scoped>.unp-header {  height: 400rpx;  display: flex;  align-items: center;  justify-content: center;  .unp-logo {    display: flex;    flex-direction: column;    align-items: center;    justify-content: center;  }}.unp-box {  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  .unp-form{    width: 560rpx;  }}.lk-group {  height: 40rpx;  margin-top: 40rpx;  display: flex;  align-items: center;  justify-content: space-between;  font-size: 12rpx;  color: #3c9cff;  text-decoration: #3c9cff;}</style>
 |