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.

41 lines
712 B

2 years ago
<template>
<view>
<win-item-info :dataContent="itemInfo"></win-item-info>
<win-job-detail-compare :dataContent="dataContent"></win-job-detail-compare>
</view>
</template>
<script>
import winItemInfo from '@/mycomponents/wincom/unitCom/winItemInfo.vue'
import winJobDetailCompare from '@/mycomponents/wincom/basicCom/winJobDetailCompare.vue'
export default {
components: {
winItemInfo,
winJobDetailCompare
},
data() {
return {
expand: false
}
},
props: {
dataContent: {
type: Object,
default: {}
},
itemInfo: {
type: Object,
default: {}
}
},
methods: {
expandDetail() {
this.expand = !this.expand;
}
}
}
</script>
<style>
</style>