123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <template>
- <view class="app-phone-binding">
- <view class="app-bound dir-top-nowrap cross-center" v-if="bind">
- <image class="app-image" :src="wxapp_img.mall.binding"></image>
- <view class="app-phone-text dir-top-nowrap" >
- <text>已绑定手机</text>
- <text class="app-hone">{{phone}}</text>
- </view>
- <view class="app-button">
- <app-button type="important" round background="#ff4544" height="88" width="700" fontSize="32" @click="clearPhone(false)">更换绑定</app-button>
- </view>
- </view>
- <template v-else>
- <view class="app-unbound">
- <!-- #ifndef MP-BAIDU -->
- <view class="header dir-left-nowrap" v-if="is_manual_mobile_auth == 1">
- <view class="box-grow-1" @click="setActive(1)">
- <app-form-id>
- <text :class="{'active-index': activeIndex === 1}">
- 直接授权
- </text>
- </app-form-id>
- </view>
- <view class="box-grow-1" @click="setActive(2)">
- <app-form-id>
- <text :class="{'active-index': activeIndex === 2}">
- 手动输入
- </text>
- </app-form-id>
- </view>
- </view>
- <!-- #endif-->
- <view class="content">
- <!-- #ifndef MP-BAIDU -->
- <view class="input-view dir-left-nowrap cross-center" v-if="activeIndex === 1">
- <view class="input" :class="{'input-value': value !== ''}">{{value === '' ? '点击授权获取手机号' : value}}</view>
- <view class="line"></view>
- <!-- #ifndef MP-ALIPAY -->
- <button open-type="getPhoneNumber" class="button" @getphonenumber="getPhoneNumber">点击授权</button>
- <!-- #endif -->
- <!-- #ifdef MP-ALIPAY -->
- <button open-type="getAuthorize"
- class="button"
- @getAuthorize="onGetAuthorize"
- scope='phoneNumber'
- >点击授权</button>
- <!-- #endif -->
- </view>
- <!-- #endif -->
- <view class="manual-input dir-top-nowrap" v-if="activeIndex === 2">
- <view class="top">
- <input type="number" v-model="phoneNumber" placeholder="输入手机号">
- </view>
- <view class="bottom dir-left-nowrap cross-center">
- <input type="number" placeholder="输入验证码" v-model="verificationCode">
- <view class="line"></view>
- <view class="btn" @click="obtain">获取验证码</view>
- </view>
- </view>
- <view class="sure-button" @click="bindPhone(true, activeIndex)">确认</view>
- </view>
- </view>
- </template>
- </view>
- </template>
- <script>
- import {mapState, mapGetters} from 'vuex';
- export default {
- name: 'app-phone-binding',
- data() {
- return {
- code: '',
- value: '',
- // #ifndef MP-BAIDU
- activeIndex: 1,
- // #endif
- // #ifdef MP-BAIDU
- activeIndex: 2,
- // #endif
- phoneNumber: null,
- verificationCode: null,
- }
- },
- props: {
- bind: {
- type: Boolean,
- },
- phone: {
- type: String,
- }
- },
- computed: {
- ...mapState({
- wxapp_img: state => state.mallConfig.__wxapp_img,
- is_manual_mobile_auth: state => state.mallConfig.mall.setting.is_manual_mobile_auth
- }),
- },
- created() {
- // #ifndef MP-ALIPAY
- let _this= this;
- uni.login({
- scopes: 'auth_base',
- success(res) {
- if (res.errMsg === 'login:ok') {
- _this.code = res.code;
- }
- }
- })
- // #endif
- },
- methods: {
- // #ifndef MP-ALIPAY
- getPhoneNumber(e) {
- if (e.detail.errMsg === 'getPhoneNumber:fail user deny' || !this.code) return;
- let _this = this;
- this.$request({
- method: 'post',
- url: _this.$api.phone.binding,
- data: {
- encryptedData: e.detail.encryptedData,
- iv: e.detail.iv,
- code: _this.code,
- }
- }).then(response => {
- this.value = response.data.mobile;
- })
- },
- // #endif
- // #ifdef MP-ALIPAY
- onGetAuthorize() {
- let _this = this;
- my.getPhoneNumber({
- success: (res) => {
- this.$request({
- method: 'post',
- url: _this.$api.phone.binding,
- data: {
- data: JSON.parse(res.response).response,
- }
- });
- this.value = JSON.parse(res.response).response;
- },
- fail: () => {
- }
- });
- },
- // #endif
- bindPhone(data, i) {
- if (i === 1) {
- if (this.value === '') return;
- this.$emit('click', data);
- } else {
- if (this.verificationCode === null) return;
- this.$request({
- url: this.$api.phone.binding,
- method: 'post',
- data: {
- mobile: this.phoneNumber,
- mobile_code: this.verificationCode,
- }
- }).then(res => {
- if (res.code === 0) {
- this.$emit('click', data);
- } else if (res.code === 1) {
- uni.showModal({
- title: '提示',
- content: res.msg,
- })
- }
- });
- }
- },
- clearPhone(data) {
- this.$emit('click', data);
- },
- obtain() {
- if (this.phoneNumber === null) return;
- this.$request({
- url: this.$api.phone.code,
- data: {
- mobile: this.phoneNumber,
- }
- }).then(res => {
- if (res.code === 0) {
- uni.showModal({
- title: '提示',
- content: res.msg,
- })
- } else if (res.code === 1) {
- uni.showModal({
- title: '提示',
- content: res.msg,
- })
- }
- })
- },
- setActive(data) {
- this.activeIndex = data;
- }
- },
- }
- </script>
- <style scoped lang="scss">
- @import './app-phone-binding.scss';
- </style>
|