| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- <template>
- <view>
- <view @touchmove.prevent.stop>
- <uni-popup ref="bindMobile" :custom="true" :mask-click="true">
- <view class="bind-wrap">
- <!-- #ifdef H5 -->
- <view class="head color-base-bg">检测到您还未绑定手机请立即绑定您的手机号</view>
- <view class="form-wrap">
- <view class="label">手机号码</view>
- <view class="form-item"><input type="number" placeholder="请输入您的手机号码" v-model="formData.mobile" /></view>
- <block v-if="captchaConfig">
- <view class="label">验证码</view>
- <view class="form-item">
- <input type="number" placeholder="请输入验证码" v-model="formData.vercode" />
- <image :src="captcha.img" class="captcha" @click="getCaptcha"></image>
- </view>
- </block>
- <view class="label">动态码</view>
- <view class="form-item">
- <input type="number" placeholder="请输入动态码" v-model="formData.dynacode" />
- <view class="send color-base-text" @click="sendMobileCode">{{ dynacodeData.codeText }}</view>
- </view>
- </view>
- <view class="footer">
- <view @click="cancel">取消</view>
- <view class="color-base-text" @click="confirm">确定</view>
- </view>
- <!-- #endif -->
- <!-- #ifdef MP-WEIXIN || MP-QQ || MP-BAIDU -->
- <view class="bind-tip-icon"><image :src="$util.img('/upload/uniapp/member/login.png')" mode="widthFix"></image></view>
- <view class="bind-tips">为了方便您接收订单等信息,需要绑定您的手机号码</view>
- <button open-type="getPhoneNumber" class="auth-login ns-btn-default-all color-base-bg" @getphonenumber="mobileAuthLogin"><text>点击绑定手机号码</text></button>
- <!-- #endif -->
- </view>
- </uni-popup>
- </view>
- </view>
- </template>
- <script>
- import uniPopup from '../uni-popup/uni-popup.vue';
- import validate from 'common/js/validate.js';
- export default {
- name: 'bind-mobile',
- components: {
- uniPopup
- },
- mixins: [validate],
- data() {
- return {
- captchaConfig: 0,
- captcha: {
- id: '',
- img: ''
- },
- dynacodeData: {
- seconds: 120,
- timer: null,
- codeText: '获取动态码',
- isSend: false
- },
- formData: {
- key: '',
- mobile: '',
- vercode: '',
- dynacode: ''
- },
- isSub: false
- };
- },
- created() {
- this.getCaptchaConfig();
- },
- methods: {
- open() {
- this.$refs.bindMobile.open();
- },
- cancel() {
- this.$refs.bindMobile.close();
- },
- confirm() {
- let authData = uni.getStorageSync('authInfo');
- let data = {
- mobile: this.formData.mobile,
- key: this.formData.key,
- code: this.formData.dynacode
- };
- if (this.captcha.id != '') {
- data.captcha_id = this.captcha.id;
- data.captcha_code = this.formData.vercode;
- }
- if (Object.keys(authData).length) {
- Object.assign(data, authData);
- }
- if (authData.avatarUrl) data.headimg = authData.avatarUrl;
- if (authData.nickName) data.nickname = authData.nickName;
- if (uni.getStorageSync('source_member')) data.source_member = uni.getStorageSync('source_member');
- if (this.verify(data)) {
- if (this.isSub) return;
- this.isSub = true;
- this.$api.sendRequest({
- url: '/api/tripartite/mobile',
- data,
- success: res => {
- if (res.code >= 0) {
- uni.setStorage({
- key: 'token',
- data: res.data.token,
- success: () => {
- uni.removeStorageSync('loginLock');
- uni.removeStorageSync('unbound');
- uni.removeStorageSync('authInfo');
- }
- });
- this.$store.commit('setToken', res.data.token);
- this.$store.dispatch('getCartNumber');
- this.$refs.bindMobile.close();
- if (res.data.is_register && this.$refs.registerReward.getReward()) {
- this.$refs.registerReward.open();
- }
- } else {
- this.isSub = false;
- this.getCaptcha();
- this.$util.showToast({ title: res.message });
- }
- },
- fail: res => {
- this.isSub = false;
- this.getCaptcha();
- }
- });
- }
- },
- /**
- * 表单验证
- * @param {Object} data
- */
- verify(data) {
- let rule = [{ name: 'mobile', checkType: 'required', errorMsg: '请输入手机号' }, { name: 'mobile', checkType: 'phoneno', errorMsg: '请输入正确的手机号' }];
- if (this.captchaConfig == 1) {
- if (this.captcha.id != '') rule.push({ name: 'captcha_code', checkType: 'required', errorMsg: this.$lang('captchaPlaceholder') });
- }
- rule.push({ name: 'code', checkType: 'required', errorMsg: this.$lang('dynacodePlaceholder') });
- var checkRes = validate.check(data, rule);
- if (checkRes) {
- return true;
- } else {
- this.$util.showToast({ title: validate.error });
- return false;
- }
- },
- /**
- * 获取验证码配置
- */
- getCaptchaConfig() {
- this.$api.sendRequest({
- url: '/api/config/getCaptchaConfig',
- success: res => {
- if (res.code >= 0) {
- this.captchaConfig = res.data.data.value.shop_reception_login;
- if (this.captchaConfig) this.getCaptcha();
- }
- }
- });
- },
- /**
- * 获取验证码
- */
- getCaptcha() {
- this.$api.sendRequest({
- url: '/api/captcha/captcha',
- data: {
- captcha_id: this.captcha.id
- },
- success: res => {
- if (res.code >= 0) {
- this.captcha = res.data;
- this.captcha.img = this.captcha.img.replace(/\r\n/g, '');
- }
- }
- });
- },
- /**
- * 发送手机动态码
- */
- sendMobileCode() {
- if (this.dynacodeData.seconds != 120) return;
- var data = {
- mobile: this.formData.mobile,
- captcha_id: this.captcha.id,
- captcha_code: this.formData.vercode
- };
- var rule = [{ name: 'mobile', checkType: 'required', errorMsg: '请输入手机号' }, { name: 'mobile', checkType: 'phoneno', errorMsg: '请输入正确的手机号' }];
- if (this.captchaConfig == 1) {
- rule.push({ name: 'captcha_code', checkType: 'required', errorMsg: '请输入验证码' });
- }
- var checkRes = validate.check(data, rule);
- if (!checkRes) {
- this.$util.showToast({ title: validate.error });
- return;
- }
- if (this.dynacodeData.isSend) return;
- this.dynacodeData.isSend = true;
- this.$api.sendRequest({
- url: '/api/tripartite/mobileCode',
- data: data,
- success: res => {
- this.dynacodeData.isSend = false;
- if (res.code >= 0) {
- this.formData.key = res.data.key;
- if (this.dynacodeData.seconds == 120 && this.dynacodeData.timer == null) {
- this.dynacodeData.timer = setInterval(() => {
- this.dynacodeData.seconds--;
- this.dynacodeData.codeText = this.dynacodeData.seconds + 's后可重新获取';
- }, 1000);
- }
- } else {
- this.$util.showToast({ title: res.message });
- }
- },
- fail: () => {
- this.$util.showToast({ title: 'request:fail' });
- this.dynacodeData.isSend = false;
- }
- });
- },
- mobileAuthLogin(e) {
- if (e.detail.errMsg == 'getPhoneNumber:ok') {
- let authData = uni.getStorageSync('authInfo');
- var data = {
- iv: e.detail.iv,
- encryptedData: e.detail.encryptedData
- };
- if (Object.keys(authData).length) {
- Object.assign(data, authData);
- }
- if (authData.avatarUrl) data.headimg = authData.avatarUrl;
- if (authData.nickName) data.nickname = authData.nickName;
- if (uni.getStorageSync('source_member')) data.source_member = uni.getStorageSync('source_member');
- if (this.isSub) return;
- this.isSub = true;
- this.$api.sendRequest({
- url: '/api/tripartite/mobileauth',
- data,
- success: res => {
- if (res.code >= 0) {
- uni.setStorage({
- key: 'token',
- data: res.data.token,
- success: () => {
- uni.removeStorageSync('loginLock');
- uni.removeStorageSync('unbound');
- uni.removeStorageSync('authInfo');
- this.$store.dispatch('getCartNumber');
- }
- });
- this.$store.commit('setToken', res.data.token);
- this.$refs.bindMobile.close();
- if (res.data.is_register && this.$refs.registerReward.getReward()) {
- this.$refs.registerReward.open();
- }
- } else {
- this.isSub = false;
- this.$util.showToast({ title: res.message });
- }
- },
- fail: res => {
- this.isSub = false;
- this.$util.showToast({ title: 'request:fail' });
- }
- });
- }
- }
- },
- watch: {
- 'dynacodeData.seconds': {
- handler(newValue, oldValue) {
- if (newValue == 0) {
- clearInterval(this.dynacodeData.timer);
- this.dynacodeData = {
- seconds: 120,
- timer: null,
- codeText: '获取动态码',
- isSend: false
- };
- }
- },
- immediate: true,
- deep: true
- }
- }
- };
- </script>
- <style lang="scss">
- .bind-wrap {
- width: 600rpx;
- background: #fff;
- box-sizing: border-box;
- border-radius: 20rpx;
- overflow: hidden;
- .head {
- text-align: center;
- height: 90rpx;
- line-height: 90rpx;
- color: #fff;
- font-size: $font-size-tag;
- }
- .form-wrap {
- padding: 30rpx 40rpx;
- .label {
- color: #000;
- font-size: $font-size-base;
- line-height: 1.3;
- }
- .form-item {
- margin: 20rpx 0;
- display: flex;
- padding-bottom: 10rpx;
- border-bottom: 1px solid #eee;
- align-items: center;
- input {
- font-size: $font-size-tag;
- flex: 1;
- }
- .send {
- font-size: $font-size-tag;
- line-height: 1;
- }
- .captcha {
- margin: 4rpx;
- height: 52rpx;
- width: 140rpx;
- }
- }
- }
- .footer {
- border-top: 1px solid #eee;
- display: flex;
- view {
- flex: 1;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- &:first-child {
- font-size: 28rpx;
- border-right: 1px solid #eee;
- }
- }
- }
- .bind-tips {
- color: #aaa;
- font-size: $font-size-base;
- padding: 20rpx 50rpx;
- text-align: center;
- }
- .auth-login {
- width: 300rpx;
- margin: 20rpx auto 60rpx auto;
- }
- .bind-tip-icon {
- padding-top: 80rpx;
- width: 100%;
- text-align: center;
- image {
- width: 300rpx;
- }
- }
- }
- .ns-btn-default-all {
- width: 100%;
- height: 70rpx;
- border-radius: 70rpx;
- text-align: center;
- line-height: 70rpx;
- color: #ffffff;
- font-size: $font-size-base;
- }
- </style>
|