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.
42 lines
593 B
42 lines
593 B
12 months ago
|
<template>
|
||
|
<view>
|
||
|
<view class="task_card">
|
||
|
<job-top :dataContent="dataContent"></job-top>
|
||
|
<slot></slot>
|
||
|
<u-line color="#909399" />
|
||
|
<job-bottom :dataContent="dataContent"></job-bottom>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import jobTop from '@/mycomponents/job/jobTop.vue'
|
||
|
import jobBottom from '@/mycomponents/job/jobBottom.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
jobTop,
|
||
|
jobBottom,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|