You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
682 B

1 year ago
<template>
1 year ago
<job-com-main-card :dataContent="dataContent">
11 months ago
<jobComMainDetailCard :isShowDeliverType="isShowDeliverType" :dataContent="dataContent"></jobComMainDetailCard>
1 year ago
</job-com-main-card>
</template>
<script>
import jobComMainCard from '@/mycomponents/job/jobComMainCard.vue'
import jobComMainDetailCard from '@/mycomponents/job/jobComMainDetailCard.vue'
1 year ago
export default {
components: {
jobComMainCard,
jobComMainDetailCard
1 year ago
},
data() {
return {};
},
props: {
dataContent: {
type: Object,
default: {}
},
11 months ago
isShowDeliverType: {
type: Boolean,
default: false
},
1 year ago
},
methods: {
}
}
</script>
<style lang="scss">
</style>