| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- <script>
- import { clientLogin, sendMsg } from '@/api/newLogin.js'
- export default {
- data() {
- return {
- phone: '',
- password: '',
- countdown: 60,
- timer: null,
- isSendingCode: false,
- isBinding: false,
- isPwdHide: true,
- isPasswordLogin: true,
- useCodeLogin: false,
- showCaptcha: false, // 弹窗显隐
- imgCode: '', // 用户填写的图形验证码
- captchaImg: '', // 图形验证码图片地址
- captchaKey: '' // 后端返回验证码标识
- }
- },
- computed: {
- canGetCode() {
- return this.phone && this.validatePhone(this.phone) && !this.isSendingCode && this.countdown === 60
- },
- // canBind() {
- // return this.phone && this.validatePhone(this.phone) && this.code && this.code.length === 6 && !this.isBinding
- // }
- },
- onShow() {
- this.password = ''
- },
- methods: {
- validatePhone(phone) {
- const reg = /^1[3-9]\d{9}$/
- return reg.test(phone)
- },
- nextStep() {
- if (!this.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return
- }
- if (!this.validatePhone(this.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return
- }
- if (!this.isPasswordLogin) {
- this.showCaptcha = true
- }
- },
- //登录
- loginPhoneFun() {
- var _this = this;
- if (this.isBinding) return
- if (!this.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- })
- return
- }
- if (!this.validatePhone(this.phone)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- })
- return
- }
- if (!this.password && this.isPasswordLogin) {
- uni.showToast({
- title: '请输入密码',
- icon: 'none'
- })
- return
- }
- this.isBinding = true
- clientLogin({
- //openId: uni.getStorageSync('wx_copenid'),
- userType: '2',
- phone: _this.phone,
- codeSwitch: 'false',//是否开启验证码登录 true-是 false-否
- passWord: this.passWord
- }).then(res => {
- if (res.data.code == 200) {
- uni.showToast({
- title: '登录成功',
- icon: 'success'
- })
- uni.setStorageSync('wx_phone', _this.phone)
- _this.isBinding = false;
- _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'
- })
- }
- },
- //图形验证码提交
- submitImgCode() {
- if (!this.imgCode) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'none'
- })
- return
- }
- sendMsg33333({ uuid:this.uuid,imgCode:this.imgCode}).then(res => {
- console.log(res)
- if (res.data.code == 200) {
- uni.navigateTo({
- url: `/setting/myNew/useCodeLogin?phone=` + this.phone
- })
- }
-
- })
- },
- //忘记密码
- forgetPassword() {
- uni.navigateTo({
- url: `/setting/myNew/forgetPassword?phone=` + this.phone
- })
- }
- },
- 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 class="bubble-text">您好,欢迎使用广誉源!</view>
- </view>
- <view class="greeting-area1"></view>
- <view class="content">
- <view class="input-box">
- <u-input v-model="phone" type="number" border="none" maxlength="11" placeholder="请输入手机号"
- placeholder-style="font-weight: 400;font-size: 30rpx;color: #C9CDD4;" class="input-item">
- <!-- <template slot="prefix">
- <view class="label">
- <text>+86</text>
- <u-line length="38rpx" color="#ccc" margin="0 12rpx 0 20rpx" direction="col"></u-line>
- </view>
- </template> -->
- </u-input>
- </view>
- <view class="input-box" v-if="isPasswordLogin">
- <u-input v-model="password" customStyle="font-family: monospace" autocomplete="off" border="none"
- :password="isPwdHide" maxlength="20" customClass="pwd-star" placeholder="请输入密码"
- placeholder-style="font-weight: 400;font-size: 30rpx;color: #C9CDD4;" class="input-item">
- <!-- <template #suffix>
- <image v-if="isPwdHide" src="/static/login/closeEye.png" @click="isPwdHide = !isPwdHide" class="captcha-img"></image>
- <image v-if="!isPwdHide" src="/static/login/openEye.png" @click="isPwdHide = !isPwdHide" class="captcha-img"></image>
- </template> -->
- </u-input>
- </view>
- <view class="bind-btn">
- <u-button v-if="isPasswordLogin || useCodeLogin" :loading="isBinding" type="primary"
- @click="loginPhoneFun">登录</u-button>
- <u-button v-if="!isPasswordLogin" :loading="isBinding" type="primary" @click="nextStep">下一步</u-button>
- </view>
- <view class="textBox">
- <view class="text1" v-if="isPasswordLogin" @click="isPasswordLogin = false">验证码登录</view>
- <view class="text1" v-if="!isPasswordLogin" @click="isPasswordLogin = true">密码登录</view>
- <view class="text2" v-if="isPasswordLogin" @click="forgetPassword">忘记密码</view>
- </view>
- </view>
- <!-- //myNew/forgetPassword -->
- <!-- 图形验证码弹窗 -->
- <u-popup :show="showCaptcha" mode="center" border-radius="12">
- <view class="captcha-box">
- <view class="captcha-title">
- <view>请输入下方图形验证码</view>
- <u-icon custom-style="position: relative;left:90rpx ;" name="close" color="#C9CDD4" size="20"
- @click="showCaptcha = false"></u-icon>
- </view>
- <view style="padding: 0 48rpx;margin-top: 48rpx;">
- <view style="display: flex;justify-content: space-between;height: 106rpx;border-bottom: 1rpx solid #E7E7E7;">
- <!-- 验证码输入框,唤起全字符键盘 -->
- <u-input v-model="imgCode" placeholder="请输入图形验证码" :focus="showCaptcha" type="text" maxlength="4"
- border="none" placeholder-style="font-weight: 400;font-size: 30rpx;color: #C9CDD4;"></u-input>
- <!-- 图形验证码图片,点击刷新 -->
- <image :src="captchaImg" @click="refreshCaptcha" class="captcha-img"></image>
- </view>
- <view class="text" @click="submitImgCode">看不清? 换一张</view>
- <u-button class="submitImgCode" @click="submitImgCode" block>确定</u-button>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <style scoped lang="scss">
- ::v-deep .u-popup__content {
- background-color: #00000000;
- }
- .captcha-box {
- width: 622rpx;
- background: #FFFFFF;
- border-radius: 32rpx 32rpx 32rpx 32rpx;
- .captcha-title {
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- text-align: center;
- padding: 32rpx 0;
- border-bottom: 1rpx solid #E7E7E7;
- }
- .captcha-img {
- //width: 100%;
- width: 200rpx;
- height: 106rpx;
- }
- .submitImgCode {
- width: 526rpx;
- height: 80rpx;
- background: linear-gradient(263deg, #45FFD7 0%, #7FFFBD 100%);
- border-radius: 60rpx 60rpx 60rpx 60rpx;
- margin-top: 48rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #1D2129;
- text-align: center;
- margin-bottom: 48rpx;
- }
- .text {
- margin-top: 12rpx;
- font-weight: 400;
- font-size: 28rpx;
- color: #86909C;
- text-align: right;
- }
- .u-input {}
- }
- .sett-box {
- background: #ffffff;
- width: 100%;
- min-height: 100vh;
- line-height: 1;
- position: relative;
- //padding: 36rpx 40rpx;
- .greeting-area1 {
- height: 438rpx;
- }
- .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: 4;
- height: 438rpx;
- position: absolute;
- overflow: hidden;
- width: 100%;
- .bubble-text {
- font-weight: 500;
- font-size: 52rpx;
- color: #1D2129
- }
- }
- .content {
- padding: 0 64rpx;
- .textBox {
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- padding: 16rpx 42rpx 0 42rpx;
- }
- .text1 {
- font-weight: 400;
- font-size: 28rpx;
- color: #19D29B;
- }
- .text2 {
- font-weight: 400;
- font-size: 28rpx;
- color: #86909C;
- text-align: center;
- }
- }
- }
- .input-box {
- width: 622rpx;
- height: 110rpx;
- background: #FFFFFF;
- display: flex;
- align-items: center;
- border-bottom: 1rpx solid #E7E7E7;
- .label {
- display: flex;
- }
- .input-item {
- flex: 1;
- }
- ::v-deep .uni-input-input {
- font-weight: 500;
- font-size: 30rpx;
- color: #1D2129;
- }
- .captcha-img{
- width: 30rpx;
- height: 30rpx;
- }
- }
- .code-box {
- .code-input {
- flex: 1;
- }
- .code-btn {
- width: 200rpx;
- text-align: right;
- font-size: 28rpx;
- color: #2DB1A8;
- line-height: 88rpx;
- &.disabled {
- color: #2DB1A8;
- }
- }
- }
- .bind-btn {
- margin-top: 120rpx;
- ::v-deep .u-button {
- width: 622rpx;
- height: 88rpx;
- background: #333335;
- border-radius: 60rpx 60rpx 60rpx 60rpx;
- border: none;
- font-weight: 500;
- font-size: 32rpx;
- color: #fff;
- text-align: center;
- }
- ::v-deep .u-button--disabled {
- background: #E0E0E0 !important;
- color: #999 !important;
- }
- }
- </style>
|