123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- <template>
- <view class="wrapper" :style="colorStyle">
- <view class="bag">
- <img :src="imgHost+'/statics/images/users/login-bg.jpg'" alt="" srcset="">
- </view>
- <view class="system-height" :style="{ height: statusBarHeight }"></view>
- <!-- #ifdef MP -->
- <view class="title-bar" style="height: 43px;">
- <view class="icon" @click="back" v-if="!isHome">
- <image src="../static/left.png"></image>
- </view>
- <view class="icon" @click="home" v-else>
- <image src="../static/home.png"></image>
- </view>
- {{pageTitle}}
- </view>
- <!-- #endif -->
- <view class="page-msg">
- <view class="title">
- {{pageType == 1?'绑定手机号':'手机号登录'}}
- </view>
- <view class="tip">
- {{pageType == 1?'登录注册需绑定手机号':'首次登录会自动注册'}}
- </view>
- </view>
- <view class="page-form">
- <view class="item">
- <input type='number' placeholder='填写手机号码' placeholder-class='placeholder' v-model="phone"
- :maxlength="11"></input>
- </view>
- <view class="item acea-row row-between-wrapper">
- <input type='number' placeholder='填写验证码' placeholder-class='placeholder' :maxlength="6"
- class="codeIput" v-model="captcha"></input>
- <view class="line">
- </view>
- <button class="code font-num" :class="disabled === true ? 'on' : ''" :disabled='disabled' @click="code">
- {{ text }}
- </button>
- </view>
- <view class="btn" @click="submitData">
- {{pageType == 1 ? '绑定手机号' : '立即登录'}}
- </view>
- </view>
- <view class="protocol" v-if="pageType == 0 && !canGetPrivacySetting">
- <checkbox-group @click.stop='ChangeIsDefault'>
- <checkbox :class="inAnimation?'trembling':''" @animationend='inAnimation=false'
- :checked="protocol ? true : false" /> <text @click.stop='ChangeIsDefault'>已阅读并同意</text>
- <text class="main-color" @click.stop="privacy('user')">《用户协议》</text>
- 与<text class="main-color" @click.stop="privacy('privacy')">《隐私协议》</text>
- </checkbox-group>
- </view>
- <Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }"
- ref="verify"></Verify>
- <editUserModal :isShow="isShow" @closeEdit="closeEdit" @editSuccess="editSuccess">
- </editUserModal>
- <!-- #ifdef MP -->
- <privacyAgreementPopup v-if="canGetPrivacySetting" @onReject="onReject" @onAgree="onAgree">
- </privacyAgreementPopup>
- <!-- #endif -->
- </view>
- </template>
- <script>
- const app = getApp();
- let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- import { HTTP_REQUEST_URL } from '@/config/app';
- import sendVerifyCode from "@/mixins/SendVerifyCode";
- import colors from '@/mixins/color.js';
- import editUserModal from '@/components/eidtUserModal/index.vue'
- import privacyAgreementPopup from '@/components/privacyAgreementPopup/index.vue'
- import {
- bindingUserPhone,
- verifyCode,
- registerVerify,
- updatePhone
- } from '@/api/api.js';
- import {
- loginMobile,
- getCodeApi,
- getUserInfo,
- phoneSilenceAuth
- } from "@/api/user.js";
- import {
- phoneLogin,
- wechatBindingPhone
- } from '@/api/public.js'
- import Routine from '@/libs/routine';
- import Verify from '../components/verify/verify.vue';
- import Cache from '@/utils/cache';
- export default {
- mixins: [sendVerifyCode, colors],
- components: {
- Verify,
- editUserModal,
- privacyAgreementPopup
- },
- data() {
- return {
- imgHost: HTTP_REQUEST_URL,
- statusBarHeight: statusBarHeight,
- pageType: 1, // 0 登录 1 绑定手机
- phone: '',
- captcha: '',
- text: '获取验证码',
- isShow: false,
- protocol: false,
- inAnimation: false,
- authKey: "",
- backUrl: "",
- pageTitle: '绑定手机号',
- configData: Cache.get('BASIC_CONFIG'),
- canGetPrivacySetting: false,
- }
- },
- onLoad(options) {
- // #ifdef MP
- if (wx.getPrivacySetting) {
- this.canGetPrivacySetting = true
- }
- // #endif
- if (options.authKey) {
- this.authKey = options.authKey
- }
- this.backUrl = options.backUrl || ''
- if (options.pageType) {
- this.pageType = options.pageType || 1
- this.pageTitle = options.pageType == 1 ? '绑定手机号' : '手机号登录'
- }
- let pages = getCurrentPages();
- let prePage = pages[pages.length - 2];
- if (prePage && prePage.route == 'pages/order_addcart/order_addcart') {
- this.isHome = true;
- } else {
- this.isHome = false;
- }
- },
- methods: {
- onAgree() {
- this.protocol = true
- },
- submitData() {
- let that = this;
- if (this.pageType == 0) {
- this.isLogin()
- return
- }
- if (!this.rules()) return
- if (!this.authKey) {
- let key = this.$Cache.get('snsapiKey');
- this.phoneAuth(key)
- } else {
- this.phoneAuth(this.authKey)
- }
- },
- rules() {
- let that = this;
- if (!this.protocol && this.pageType == 0) {
- this.$util.Tips({
- title: '请先阅读并同意协议'
- });
- return false
- }
- if (!that.phone) {
- this.$util.Tips({
- title: '请填写手机号码'
- });
- return false
- }
- if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) {
- this.$util.Tips({
- title: '请输入正确的手机号码'
- });
- return false
- }
- if (!that.captcha) {
- this.$util.Tips({
- title: '请填写验证码'
- });
- return false
- }
- return true
- },
- isLogin() {
- if (!this.rules()) return
- uni.showLoading({
- title: '正在登录中'
- });
- Routine.getCode()
- .then(code => {
- phoneLogin({
- code,
- spread_spid: app.globalData.spid,
- spread_code: app.globalData.code,
- phone: this.phone,
- captcha: this.captcha,
- }).then(res => {
- uni.hideLoading();
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.getUserInfo(res.data.store_user_avatar);
- })
- .catch(err => {
- uni.hideLoading();
- uni.showToast({
- title: err,
- icon: 'none',
- duration: 2000
- });
- });
- })
- .catch(err => {
- console.log(err)
- });
- },
- phoneAuth(key) {
- uni.showLoading({
- title: '正在登录中'
- });
- let met
- // #ifdef MP
- met = phoneLogin
- // #endif
- // #ifndef MP
- met = wechatBindingPhone
- // #endif
- met({
- phone: this.phone,
- captcha: this.captcha,
- key
- }).then(res => {
- let time = res.data.expires_time - this.$Cache.time();
- this.$store.commit('LOGIN', {
- token: res.data.token,
- time: time
- });
- this.getUserInfo(res.data.store_user_avatar);
- }).catch(error => {
- uni.hideLoading()
- this.$util.Tips({
- title: error
- })
- })
- },
- /**
- * 获取个人用户信息
- */
- getUserInfo(new_user) {
- let that = this;
- getUserInfo().then(res => {
- uni.hideLoading();
- that.userInfo = res.data;
- that.$store.commit('SETUID', res.data.uid);
- that.$store.commit('UPDATE_USERINFO', res.data);
- if (new_user) {
- this.isShow = true
- } else {
- // #ifdef MP
- that.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 3,
- url: this.configData.wechat_auth_switch ? 2 : 1
- });
- // #endif
- // #ifndef MP
- // that.$util.Tips({
- // title: '登录成功',
- // icon: 'success'
- // }, {
- // tab: 4,
- // url: this.backUrl || '/pages/user/index'
- // });
- that.wechatPhone();
- // #endif
- }
- });
- },
-
- wechatPhone() {
- this.$Cache.clear('snsapiKey');
- if (this.backUrl) {
- let url = uni.getStorageSync('snRouter');
- if (!url) {
- url = '/pages/index/index';
- }
- this.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 4,
- url: this.url || '/pages/user/index'
- });
- } else {
- uni.reLaunch({
- url: '/pages/user/index'
- })
- }
- },
-
-
-
- success(data) {
- this.$refs.verify.hide()
- let that = this;
- verifyCode().then(res => {
- let obj ={
- phone: that.phone,
- type: 'reset',
- key: res.data.key,
- captchaType: 'blockPuzzle',
- captchaVerification: data.captchaVerification
- }
- registerVerify(obj)
- .then(res => {
- that.$util.Tips({
- title: res.msg
- });
- that.sendCode();
- }).catch(err => {
- return that.$util.Tips({
- title: err
- });
- });
- });
- },
- /**
- * 发送验证码
- *
- */
- async code() {
- let that = this;
- if (!that.phone) return that.$util.Tips({
- title: '请填写手机号码'
- });
- if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
- title: '请输入正确的手机号码'
- });
- this.$refs.verify.show();
- return;
- },
- ChangeIsDefault() {
- this.$set(this, 'protocol', !this.protocol);
- },
- closeEdit() {
- this.isShow = false
- this.$util.Tips({
- title: '登录成功',
- icon: 'success'
- }, {
- tab: 3,
- url: 2
- });
- },
- editSuccess() {
- this.isShow = false
- },
- back() {
- uni.navigateBack({
- delta: this.configData.wechat_auth_switch ? 2 : 1
- })
- },
- privacy(type) {
- uni.navigateTo({
- url: "/pages/users/privacy/index?type=" + type
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .wrapper {
- background-color: #fff;
- min-height: 100vh;
- position: relative;
- .bag {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 0;
- /* #ifdef H5 */
- z-index: 0;
-
- /* #endif */
- img {
- width: 100%;
- height: 544rpx;
- }
- }
- .page-msg {
- padding-top: 160rpx;
- margin-left: 72rpx;
- z-index: 2;
- position: relative;
- .title {
- font-size: 48rpx;
- font-weight: 500;
- color: #333333;
- line-height: 68rpx;
- }
- .tip {
- font-size: 28rpx;
- font-weight: 400;
- color: #333333;
- line-height: 40rpx;
- }
- }
- .page-form {
- width: 606rpx;
- margin: 100rpx auto 0 auto;
- z-index: 2;
- position: relative;
- .item {
- width: 100%;
- height: 88rpx;
- background: #F5F5F5;
- border-radius: 45rpx;
- padding: 24rpx 48rpx;
- margin-bottom: 32rpx;
- input {
- width: 100%;
- height: 100%;
- font-size: 32rpx;
- }
- .placeholder {
- color: #BBBBBB;
- font-size: 28rpx;
- }
- input.codeIput {
- width: 300rpx;
- }
- .line {
- width: 2rpx;
- height: 28rpx;
- background: #CCCCCC;
- }
- .code {
- font-size: 28rpx;
- color: var(--view-theme);
- background-color: rgba(255, 255, 255, 0);
- }
- .code.on {
- color: #BBBBBB !important;
- }
- }
- .btn {
- width: 606rpx;
- height: 88rpx;
- background: var(--view-theme);
- border-radius: 200rpx 200rpx 200rpx 200rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 44rpx;
- margin-top: 48rpx;
- letter-spacing: 1px;
- }
- }
- }
- .title-bar {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 34rpx;
- font-weight: 500;
- color: #333333;
- line-height: 48rpx;
- }
- .icon {
- position: absolute;
- left: 30rpx;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 86rpx;
- height: 86rpx;
- image {
- width: 40rpx;
- height: 40rpx;
- }
- }
- .protocol {
- position: fixed;
- bottom: 52rpx;
- left: 0;
- width: 100%;
- margin: 0 auto;
- color: #999999;
- font-size: 24rpx;
- line-height: 22rpx;
- text-align: center;
- bottom: calc(52rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- bottom: calc(52rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- .main-color {
- color: var(--view-theme);
- }
- .trembling {
- animation: shake 0.6s;
- }
- }
- /deep/ uni-checkbox .uni-checkbox-input {
- width: 28rpx;
- height: 28rpx;
- }
- /deep/ uni-checkbox .uni-checkbox-input.uni-checkbox-input-checked::before {
- font-size: 24rpx;
- }
- /deep/ uni-checkbox .uni-checkbox-wrapper {
- margin-bottom: 1px;
- }
- /*checkbox 选项框大小 */
- /deep/ checkbox .wx-checkbox-input {
- width: 28rpx;
- height: 28rpx;
- }
- /*checkbox选中后样式 */
- /deep/ checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- background: white;
- }
- /*checkbox选中后图标样式 */
- /deep/ checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
- width: 28rpx;
- height: 28rpx;
- line-height: 28rpx;
- text-align: center;
- font-size: 22rpx;
- background: transparent;
- transform: translate(-50%, -50%) scale(1);
- -webkit-transform: translate(-50%, -50%) scale(1);
- }
- </style>
|