|
|
@ -42,6 +42,7 @@ |
|
|
|
<win-scan-button @goScan='openScanPopup'></win-scan-button> |
|
|
|
<win-scan-pack ref="scanPopup" @getResult='getScanResult' headerType="HPQ,HMQ"></win-scan-pack> |
|
|
|
|
|
|
|
<detail-info-popup ref="detailInfoPopup"></detail-info-popup> |
|
|
|
<comMessage ref="comMessage"></comMessage> |
|
|
|
</view> |
|
|
|
</template> |
|
|
@ -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) |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|