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