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}){
uni.navigateTo({
url:"/apps/meetingNotice/detail?id=" + id
url:"/apps/AppMeetingNotice/detail?id=" + id
})
},
getData() {

View File

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