| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- <script>
- import { resetPassword, sendMsg } from '@/api/newLogin.js'
- export default {
- data() {
- return {
- phone: '', code: '',
- countdown: 60,
- // 整体8-20位,只能大小写+数字
- regPwd: /^[A-Za-z0-9]{8,20}$/,
- isPwdHide: true,
- isBinding: false,
- password: '',
- }
- },
- computed: {
- canGetCode() {
- return !this.isSendingCode && this.countdown === 60
- },
- canBind() {
- return this.code && this.code.length === 6 && !this.isBinding
- }
- },
- onLoad(options) {
- if (options.phone) {
- this.phone = options.phone;
- }
- },
- watch: {
- password(val) {
- // 只保留字母+数字,其余全部删除
- let filterStr = val.replace(/[^A-Za-z0-9]/g, '')
- filterStr = filterStr.slice(0, 20)
- // 不一致就强制覆盖,删掉#
- if (filterStr !== val) {
- //this.$set(this.password,filterStr)
- this.$nextTick(() => {
- this.password = filterStr
- });
- }
- }
- },
- methods: {
- validatePhone(phone) {
- const reg = /^1[3-9]\d{9}$/
- return reg.test(phone)
- },
- getCode() {
- if (this.isSendingCode || this.countdown < 60) return
- this.isSendingCode = true
- sendMsg({ phone: this.phone }).then(res => {
- console.log(res)
- uni.showToast({
- title: '验证码已发送',
- icon: 'success'
- })
- this.startCountdown()
- this.isSendingCode = false
- })
- },
- startCountdown() {
- this.countdown = 60
- this.timer = setInterval(() => {
- this.countdown--
- if (this.countdown <= 0) {
- clearInterval(this.timer)
- this.countdown = 60
- this.timer = null
- }
- }, 1000)
- },
- // handleInputFilter(val) {
- // // 过滤掉非字母、数字字符
- // const filterStr = val.replace(/[^A-Za-z0-9]/g, "");
- // // 限制最大20位
- // this.password = filterStr.slice(0, 20);
- // },
- submitFun() {
- if (!this.code) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'none'
- })
- return
- }
- if (!this.password) {
- uni.showToast({
- title: '请输入新密码',
- icon: 'none'
- })
- return
- }
- // 2.位数+格式校验:8~20位字母数字
- if (!this.regPwd.test(this.password) || this.password.length < 8) {
- uni.showToast({ title: "请输入8-20位数字/字母组合", icon: "none" });
- return;
- }
- uni.showToast({
- title: '验证成功',
- icon: 'none'
- })
- resetPassword({
- //openId: uni.getStorageSync('wx_copenid'),
- userType: '2',
- phone: this.phone,
- codeSwitch: 'false',//是否开启验证码登录 true-是 false-否
- phoneMsg: this.code,
- passWord: this.password
- }).then(res => {
- if (res.data.code == 200) {
- // uni.showToast({
- // title: '登录成功',
- // icon: 'success'
- // })
- this.back()
- }
- })
- },
- back() {
- let pages = getCurrentPages();
- if (pages.length >= 2) {
- let prevPage = pages[pages.length - 2];
- let prevRoute = prevPage.route;
- if (prevRoute && prevRoute !== 'pages/index/index') {
- if (prevRoute.startsWith('pages/')) {
- uni.switchTab({
- url: '/' + prevRoute
- })
- } else {
- uni.navigateBack({
- delta: 1,
- fail: () => {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- })
- }
- } else {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- } else {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- },
- },
- beforeDestroy() {
- if (this.timer) {
- clearInterval(this.timer)
- this.timer = null
- }
- }
- }
- </script>
- <template>
- <view class="sett-box">
- <input type="text" name="username" style="position:absolute;opacity:0;width:0;height:0;z-index:-99;" />
- <input type="password" name="password" style="position:absolute;opacity:0;width:0;height:0;z-index:-99;" />
- <view class="greeting-area">
- </view>
- <view class="greeting-area1"></view>
- <view class="content">
- <view class="input-box">
- <u-input v-model="phone" disabled="true" border="none" placeholder="" class="input-item">
- <template slot="prefix">
- <view class="label">
- <text>手机号</text>
- </view>
- </template>
- </u-input>
- </view>
- <view class="input-box">
- <u-input v-model="code" type="number" border="none" maxlength="6" placeholder="" placeholder-style="color: #999"
- class="input-item">
- <template slot="prefix">
- <view class="label">
- <text>验证码</text>
- </view>
- </template>
- </u-input>
- <view class="code-btn" :class="{ disabled: !canGetCode }" @click="getCode">
- <text v-if="countdown === 60">获取验证码</text>
- <text v-else>{{ countdown }}s 后重新获取</text>
- </view>
- </view>
- <view class="input-box">
- <u-input v-model="password" autocomplete="off" border="none" :password="isPwdHide" maxlength="20"
- placeholder="8-20位数字/字母组合" placeholder-style="font-weight: 400;font-size: 30rpx;color: #C9CDD4;"
- class="input-item">
- <template slot="prefix">
- <view class="label">
- <text>新密码</text>
- </view>
- </template>
- <template #suffix>
- <image src="/static/login/closeEye.png" @click="isPwdHide = !isPwdHide" class="captcha-img"></image>
- <!-- <u-icon :name="isPwdHide ? 'eye-off' : 'eye'" @click="isPwdHide = !isPwdHide" size="32rpx" color="#999" /> -->
- </template>
- </u-input>
- </view>
- <view class="bind-btn">
- <u-button :loading="isBinding" type="primary" @click="submitFun">确定</u-button>
- </view>
- </view>
- </view>
- </template>
- <style scoped lang="scss">
- ::v-deep .u-input__content {
- background-color: #ffffff00 !important;
- }
- .sett-box {
- background: #ffffff;
- width: 100%;
- min-height: 100vh;
- line-height: 1;
- position: relative;
- //padding: 36rpx 40rpx;
- .greeting-area1 {
- height: 196rpx;
- }
- .content {
- position: relative;
- padding: 0 64rpx;
- }
- .greeting-area {
- background-image: url('/static/login/loginBg.png');
- background-size: 100%;
- background-repeat: no-repeat;
- padding-left: 64rpx;
- padding-top: 256rpx;
- top: 0;
- z-index: 0 !important;
- height: 438rpx;
- position: absolute;
- overflow: hidden;
- width: 100%;
- .bubble-text {
- font-weight: 500;
- font-size: 52rpx;
- color: #1D2129
- }
- }
- .code-btn {
- font-weight: 400;
- font-size: 30rpx;
- color: #19D29B;
- text-align: center;
- font-style: normal;
- text-transform: none;
- }
- }
- .input-box {
- width: 622rpx;
- height: 110rpx;
- background: #ffffff00!important;
- display: flex;
- align-items: center;
- border-bottom: 1rpx solid #E7E7E7;
- .u-input{
- background: #ffffff00!important;
- }
- .label {
- display: flex;
- font-weight: 400;
- font-size: 30rpx;
- color: #1D2129;
- text-align: center;
- margin-right: 30rpx;
- }
- .input-item {
- flex: 1;
- }
- .captcha-img{
- width: 30rpx;
- height: 30rpx;
- }
- ::v-deep .uni-input-input {
- font-weight: 500;
- font-size: 30rpx;
- color: #1D2129;
- }
- }
- .bind-btn {
- margin-top: 80rpx;
- ::v-deep .u-button {
- width: 622rpx;
- height: 88rpx;
- background: linear-gradient(263deg, #45FFD7 0%, #7FFFBD 100%);
- border-radius: 60rpx 60rpx 60rpx 60rpx;
- border: none;
- font-weight: 500;
- font-size: 32rpx;
- color: #1D2129;
- text-align: center;
- }
- ::v-deep .u-button--disabled {
- background: #E0E0E0 !important;
- color: #999 !important;
- }
- }
- </style>
|