niexiting
7 months ago
201 changed files with 515 additions and 428 deletions
@ -0,0 +1,41 @@ |
|||||
|
<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> |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue