quanyawei
2024-03-18 9c3961f513cb548c129dd911c1eb92ec21bb703c
fix: 分享详情页打开未登录跳转
1 files modified
21 ■■■■■ changed files
pages/actionChange/workOrderDetails/index.vue 21 ●●●●● patch | view | raw | blame | history
pages/actionChange/workOrderDetails/index.vue
@@ -59,9 +59,10 @@
        async mounted() {
            await this.$onLaunched
            //等待登录成功 
            this.userInfor = JSON.parse(uni.getStorageSync('userInfor') || 'null')
            this.userInfor = JSON.parse(uni.getStorageSync('userInfor') || null)
            console.log('详情页的用户信息', this.userInfor)
            if (this.option.type === 'share' && this.userInfor) {
            if (this.option.type === 'share') {
                if (this.userInfor) {
                let params = {
                    allocationNum: this.basicInfor.allocationNum,
                    userId: this.userInfor.userId
@@ -97,6 +98,22 @@
                    console.log('获取失败的信息params', params)
                })
            } else {
                    uni.showModal({
                        title: '未登录',
                        content: '您未登录,需要登录后才能继续',
                        showCancel: false,
                        confirmText: '确定',
                        success: res => {
                            if (res.confirm) {
                                uni.reLaunch({
                                    url: '/pages/login/login',
                                })
                            }
                        },
                    })
                    this.$isResolve()
                }
            } else {
                this.isShow = true
                this.getData()
            }