diff --git a/src/project/pingchang/AppCommunityManagement/Detail.vue b/src/project/pingchang/AppCommunityManagement/Detail.vue index 32606362..dea8d320 100644 --- a/src/project/pingchang/AppCommunityManagement/Detail.vue +++ b/src/project/pingchang/AppCommunityManagement/Detail.vue @@ -378,16 +378,6 @@ export default { } }) }, - changeStatus() { - this.controllInfo.status = 2 - this.$http.post(`/app/appepidemicpreventioncommunitymanagement/troubleshooting`, this.controllInfo).then((res) => { - if (res.code == 0) { - this.$u.toast('提交成功') - uni.$emit('updateList') - this.getDetail() - } - }) - }, callPhone(phone) { uni.makePhoneCall({phoneNumber: phone}) }, diff --git a/src/project/pingchang/AppCommunityManagement/ManageDetail.vue b/src/project/pingchang/AppCommunityManagement/ManageDetail.vue index 3c62910a..fd7ac296 100644 --- a/src/project/pingchang/AppCommunityManagement/ManageDetail.vue +++ b/src/project/pingchang/AppCommunityManagement/ManageDetail.vue @@ -373,7 +373,9 @@ export default { this.$u.toast('提交成功') uni.$emit('updateDetail') uni.$emit('updateList') - uni.navigateBack() + setTimeout(() => { + uni.navigateBack() + }, 600) } }) },