This commit is contained in:
曹辉 2023-03-30 16:23:15 +08:00
parent c3e23965e4
commit f31d4dd073
2 changed files with 50 additions and 10 deletions

View File

@ -12,20 +12,30 @@
return { return {
imageurl: null, imageurl: null,
imageurls: null, imageurls: null,
goto: '',
}; };
}, },
onShow() { onShow() {
this.imageurl = baseurl + '/profile/appletPicture/healthyOne.png' this.imageurl = baseurl + '/profile/appletPicture/healthyOne.png'
this.imageurls = baseurl + '/profile/appletPicture/healthyDetails.png' this.imageurls = baseurl + '/profile/appletPicture/healthyDetails.png'
}, },
onLoad(options) {
this.goto = options.goto
},
methods: { methods: {
godetal() { godetal() {
if (this.goto == 'homepage') {
uni.navigateTo({
url: '/pages/medicine/medicine'
})
} else {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
}) })
} }
} }
} }
}
</script> </script>
<style lang="scss"> <style lang="scss">
.app { .app {

View File

@ -133,7 +133,36 @@
this.swiperImglink.forEach(e => { this.swiperImglink.forEach(e => {
e.image = baseurl + e.posterPictureUrl e.image = baseurl + e.posterPictureUrl
if (e.image == item) { if (e.image == item) {
if (e.jumpLink == '/pages/homepage/homepage' || e.jumpLink == '/pages/Personal/Personal') { if (e.dictLabel == '专病管理') {
const phone = uni.getStorageSync('phone');
if (phone) {
uni.navigateToMiniProgram({
appId: 'wxa690d053c34ceebd',
path: '/pages/index/index',
extraData: {
'from': 'qy',
'phone': phone
},
success(res) {}
})
} else {
this.$refs.uToast.show({
title: '您未登录,请先登录',
type: 'error',
duration: '1000',
url: '/pages/login/login'
})
}
} else if (e.dictLabel == '新医象') {
this.goycjc();
} else {
if (e.jumpLink == '/pages/ConsultationDetails/ConsultationDetails') {
const url = `/pages/ConsultationDetails/ConsultationDetails?goto=${'homepage'}`
uni.navigateTo({
url: url
})
} else if (e.jumpLink == '/pages/homepage/homepage' || e.jumpLink ==
'/pages/Personal/Personal') {
uni.switchTab({ uni.switchTab({
url: e.jumpLink url: e.jumpLink
}) })
@ -143,6 +172,7 @@
}) })
} }
} }
}
}) })
}, },
swiperChange(e) { swiperChange(e) {