修复bug
This commit is contained in:
parent
91c409f11d
commit
63af2aa701
|
@ -78,12 +78,12 @@
|
|||
import modal from "@/components/modal.vue"
|
||||
|
||||
|
||||
|
||||
const showOfficial = ref(false);
|
||||
const navToIndex = () => {
|
||||
if (!userStore.userInfo.supplier) uni.reLaunch({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
else if(!userStore.userInfo.supplier.openid) {
|
||||
else if(userStore.userInfo.supplier&&!userStore.userInfo.supplier.openid) {
|
||||
return showOfficial.value = true;
|
||||
}
|
||||
else{
|
||||
|
@ -143,7 +143,7 @@
|
|||
})
|
||||
}
|
||||
|
||||
const showOfficial = ref(false);
|
||||
|
||||
const showBind = ref(false); //是否显示绑定手机号弹窗
|
||||
const getPhoneNumber = (e) => {
|
||||
if (e.detail?.errMsg == 'getPhoneNumber:ok') {
|
||||
|
|
Loading…
Reference in New Issue