diff --git a/src/pages/unPlanned/job/receiptJobDetail.vue b/src/pages/unPlanned/job/receiptJobDetail.vue index a2af2f2e..b6cc5274 100644 --- a/src/pages/unPlanned/job/receiptJobDetail.vue +++ b/src/pages/unPlanned/job/receiptJobDetail.vue @@ -42,6 +42,7 @@ + @@ -80,6 +81,7 @@ import comReceiptDetailCard from '@/pages/unPlanned/coms/comReceiptDetailCard.vue' import jobTop from '@/mycomponents/job/jobTop.vue' import comRecommendDetailCard from "@/mycomponents/detail/comRecommendDetailCard.vue" + import detailInfoPopup from '@/pages/unPlanned/coms/detailInfoPopup.vue' export default { name: 'receipt_detail', @@ -89,7 +91,8 @@ comReceiptDetailCard, locationCompare, jobTop, - comRecommendDetailCard + comRecommendDetailCard, + detailInfoPopup }, data() { return { @@ -523,6 +526,9 @@ return this.jobContent; }, + openDetail(item) { + this.$refs.detailInfoPopup.openPopup(item) + },