This commit is contained in:
wanglei
2021-12-14 11:03:47 +08:00
parent 48c7cfd6c9
commit f842f4603d
2 changed files with 3 additions and 3 deletions

View File

@@ -101,7 +101,7 @@ export default {
}, },
handleDetail({id}){ handleDetail({id}){
uni.navigateTo({ uni.navigateTo({
url:"/apps/meetingNotice/detail?id=" + id url:"/apps/AppMeetingNotice/detail?id=" + id
}) })
}, },
getData() { getData() {

View File

@@ -65,9 +65,9 @@
detail({id}) { detail({id}) {
let url let url
if (this.index == 2) { if (this.index == 2) {
url = "/apps/meetingNotice/addMeeting?id=" + id url = "/apps/AppMeetingNotice/addMeeting?id=" + id
} else { } else {
url = "/apps/meetingNotice/detail?id=" + id url = "/apps/AppMeetingNotice/detail?id=" + id
} }
uni.navigateTo({url}) uni.navigateTo({url})
}, },