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