会议通知时间选择

This commit is contained in:
wanglei
2021-11-19 11:12:47 +08:00
parent 69e3eda6e5
commit e4d0f6aa98
5 changed files with 53 additions and 43 deletions

View File

@@ -112,20 +112,17 @@
})
},
handleClick(index) {
let url
this.params = index;
this.isList = false;
if (index == 0 || index == 2) {
this.comp = "meetingList";
this.params = index;
this.isList = false;
} else if (index == 1) {
url = "/pages/meetingNotice/components/belongToMe"
this.comp = "belongToMe";
}
uni.navigateTo({url})
},
add() {
uni.navigateTo({
url: "/pages/meetingNotice/components/addMeeting"
})
this.isList = false;
this.comp = "addMeeting";
}
},
@@ -142,6 +139,7 @@
},
onShow() {
this.$dict.load("meetingNoticeBefore", "meetingNoticeAfter");
this.getData()
}
}