3***@qq.com
3***@qq.com
  • 发布:2022-05-12 17:09
  • 更新:2022-05-12 17:09
  • 阅读:221

【报Bug】微信小程序vuex在Android端失效

分类:uni-app

产品分类: uniapp/小程序/微信

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: windows

HBuilderX类型: 正式

HBuilderX版本号: 3.4.6

第三方开发者工具版本号: 1.05.2110290

基础库版本号: 3.4.6

项目创建方式: HBuilderX

示例代码:

<template>
<view>
<view class="my-content">
<view class="header">
<image :src="wechatPicture" style="height: 62px; width: 62px; border-radius: 50%;"></image>
<view v-if="!phone">
<button type="primary" size="mini" @click="loginPhoneOpen">登录</button>
</view>
<view v-else class="header-text">
<view class="phone">{{phone}}</view>
<view><text class="company">企</text><text>{{companyName}}</text></view>
</view>
</view>
<view class="my-list">
<view class="my-list-item" @click="goCompany">
<image src="../../static/image/my-company.png" style="height: 17px; width: 17px;"></image>
<text>企业登录</text>
</view>
<view class="my-list-item" @click="goAccount">
<image src="../../static/image/my-account.png" style="height: 17px; width: 17px;"></image>
<text>账号管理</text>
</view>
</view>
<view style="padding: 0 30rpx;">
<button :disabled="limit == NO_LIMIT" type="primary" @click="loginOut" style="margin-top: 120rpx;">退出登录</button>
</view>
<login-phone ref="loginPhone"></login-phone>
</view>
</view>
</template>

<script>
const StorageHelper = require('../../common/storage-helper')
const Constants = require('../../common/constants');
const UserConstant = Constants.UserConstant;
const ValueConstant = Constants.ValueConstant
const AccountRestful = require('../../restfuls/account');
const UserRestful = require('../../restfuls/user');
import {mapState,mapGetters} from 'vuex'
export default {
data() {
return {
NO_LIMIT: ValueConstant.NO_LIMIT
}
},
created(){

    },  
    computed:{  
        ...mapState(['limit']),  
        ...mapGetters(['phone','companyName', 'wechatPicture']),  
    },  
    watch:{  
        companyName(val){  
            console.log(val)  
        }  
    },  
    methods: {  
        loginPhoneOpen(){  
            this.$refs.loginPhone.$refs.popup.open()  
        },  
        loginOut(){  
            uni.showModal({  
                title: '',  
                content: '确认退出登录?',  
                success: function(res){  
                    if(res.confirm){  
                        AccountRestful.logout().then(res => {  
                            getApp().getUserInfo()  
                        })  
                    }  
                }  
            })  

        },  
        goCompany(){  
            if(this.phone){  
                uni.navigateTo({  
                    url: '/pages/company-login/company-login'  
                })  
            }else{  
                uni.showToast({  
                    title: `请先绑定手机号码`,  
                    icon: 'none'  
                })  
            }  
        },  
        goAccount(){  
            if(this.phone){  
                uni.navigateTo({  
                    url: '/pages/account-manage/account-manage'  
                })  
            }else{  
                uni.showToast({  
                    title: `请先绑定手机号码`,  
                    icon: 'none'  
                })  
            }  
        }  

    }  
}  

</script>

<style lang="less" scoped>
.my-content{
background-color: #fff;
padding-bottom: 120rpx;
}
.header{
padding: 50rpx 30rpx;
display: flex;
align-items: center;
image{
margin-right: 20px;
}
.header-text{
font-size: 17px;
font-weight: 500;
color: #000000;
.phone{
margin-bottom: 6px;
}
.company{
background: #000000;
border-radius: 5px;
font-size: 12px;
font-weight: normal;
color: #FFFFFF;
padding: 5px;
margin-right: 18px;
line-height: 1;
}
}
}
.my-list{
.my-list-item{
display: flex;
align-items: center;
padding: 20rpx 30rpx;
&:active{
background-color: #f1f1f1;
}
image{
height: 17px;
width: 17px;
margin-right: 40rpx;
}
}
}

</style>
<style lang="less">
.my-list{
.uni-list--sm{
height: 17px;
width: 17px;
}
}

</style>

操作步骤:

登入时不会显示手机号,退出时不会清空手机号

预期结果:

正常显示

实际结果:

登入时不会显示手机号,退出时不会清空手机号

bug描述:

微信小程序在安卓机上手机号登入后页面不回显手机号,在ios上不会出现此问题

2022-05-12 17:09 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复