会议列表

This commit is contained in:
wanglei
2021-12-13 11:53:13 +08:00
parent 00f92434f7
commit a34c26af0d
2 changed files with 15 additions and 26 deletions

View File

@@ -100,10 +100,10 @@ export default {
"3": "common/toDo.png",
}[status]
},
detail({id}) {
this.comp = "detail";
this.params = id;
this.isList = false;
detail({id}){
uni.navigateTo({
url:"/apps/meetingNotice/detail?id=" + id
})
},
getData() {
this.$http.post("/app/appmeetinginfo/list", null, {
@@ -135,12 +135,6 @@ export default {
},
onShow() {
const {id} = this.$route.query
if (id) {
this.comp = "detail";
this.params = id;
this.isList = false;
}
this.getData();
},