This commit is contained in:
yanran200730
2022-01-06 17:28:39 +08:00
parent 252ea72212
commit b82cf2a0e1
4 changed files with 18 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
<template>
<ai-detail class="reportAtWillDetail">
<ai-detail class="reportAtWillDetail" v-loading="isLoading">
<template #title>
<ai-title title="事件详情" isShowBack isShowBottomBorder @onBackClick="cancel(false)">
<template #rightBtn>
@@ -168,6 +168,7 @@
girdMemberName: '',
name: ''
},
isLoading: true,
name: '',
detail: {},
isShowUser: false,
@@ -188,7 +189,7 @@
groupId: '',
groupName: '',
content: [],
eventStatus: ''
eventStatus: '2'
}
}
},
@@ -224,7 +225,10 @@
this.$nextTick(() => {
this.initMap()
})
this.isLoading = false
}
}).catch(() => {
this.isLoading = false
})
},