| @@ -171,13 +171,6 @@ | |||
| <ApplyForAdmission ref="ApplyForAdmission" /> | |||
| <!-- 消息详情 --> | |||
| <MessageDetailDialog ref="MessageDetailDialog" @close="initData" /> | |||
| <!-- 认领企业 --> | |||
| <claim-dialog | |||
| v-if="claimDialog" | |||
| :claimDialog="claimDialog" | |||
| @close="claimDialog = false" | |||
| @updateData="initData" | |||
| ></claim-dialog> | |||
| </div> | |||
| </template> | |||
| @@ -192,14 +185,12 @@ import { mapGetters } from "vuex"; | |||
| import ApplyForAdmission from "@/views/index/ApplyForAdmission.vue"; | |||
| import MessageDetailDialog from "../mseeage/components/MessageDetailDialog/index.vue"; | |||
| import { getMessageNoticeList, markReadMessage } from "@api/my-related"; | |||
| import ClaimDialog from "@/views/park-enterprises/components/ClaimDialog.vue"; | |||
| export default { | |||
| components: { | |||
| Nav, | |||
| Footer, | |||
| ApplyForAdmission, | |||
| MessageDetailDialog, | |||
| ClaimDialog, | |||
| }, | |||
| computed: { | |||
| ...mapGetters({ | |||
| @@ -321,7 +312,6 @@ export default { | |||
| this.getMessageNoticeList(), | |||
| ]).then(() => { | |||
| this.pageLoading = false; | |||
| this.claimDialog = false; | |||
| }); | |||
| }, | |||
| // 获取企业信息 | |||
| @@ -372,7 +362,7 @@ export default { | |||
| goDetail(companyDetail) { | |||
| // 如果是未认证 | |||
| if (!this.isClaimed) { | |||
| this.claimDialog = true; | |||
| this.$router.push("/company-list"); | |||
| return; | |||
| } | |||
| // companyDetail.companyId/ | |||