bug
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<div class="body">
|
||||
<header>待参加的会议</header>
|
||||
<template v-if="meetingList.length">
|
||||
<div class="card" v-for="(item,index) in meetingList" :key="index" @click="detail(item)">
|
||||
<div class="card" v-for="(item,index) in meetingList" :key="index" @click="handleDetail(item)">
|
||||
<header>{{ item.title }}</header>
|
||||
<u-row justify="between">
|
||||
<div class="time">
|
||||
@@ -70,7 +70,6 @@ export default {
|
||||
},
|
||||
created() {
|
||||
document.title = "会议通知";
|
||||
this.$dict.load("meetingNoticeBefore", "meetingNoticeAfter", "meetStatus");
|
||||
},
|
||||
computed: {
|
||||
grid() {
|
||||
@@ -100,7 +99,7 @@ export default {
|
||||
"3": "common/toDo.png",
|
||||
}[status]
|
||||
},
|
||||
detail({id}){
|
||||
handleDetail({id}){
|
||||
uni.navigateTo({
|
||||
url:"/apps/meetingNotice/detail?id=" + id
|
||||
})
|
||||
@@ -135,6 +134,7 @@ export default {
|
||||
},
|
||||
|
||||
onShow() {
|
||||
this.$dict.load("meetingNoticeBefore", "meetingNoticeAfter");
|
||||
this.getData();
|
||||
},
|
||||
|
||||
|
||||
@@ -231,8 +231,10 @@
|
||||
this.getDetail()
|
||||
})
|
||||
},
|
||||
mounted() {
|
||||
|
||||
onShow() {
|
||||
document.title = "会议详情"
|
||||
this.$dict.load("meetStatus")
|
||||
},
|
||||
filters: {
|
||||
transform(status) {
|
||||
|
||||
Reference in New Issue
Block a user