2022-08-12 10:21:25 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2022-08-24 15:52:18 +08:00
|
|
|
<Card title="进度管理">
|
|
|
|
|
<div class="contentBox">
|
|
|
|
|
123
|
|
|
|
|
</div>
|
|
|
|
|
</Card>
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-08-24 15:52:18 +08:00
|
|
|
import Card from '../components/Card'
|
2022-08-12 10:21:25 +08:00
|
|
|
export default {
|
2022-08-24 15:52:18 +08:00
|
|
|
components: { Card },
|
2022-08-12 10:21:25 +08:00
|
|
|
data() {
|
2022-08-24 15:52:18 +08:00
|
|
|
return {}
|
2022-08-12 10:21:25 +08:00
|
|
|
}
|
2022-08-24 15:52:18 +08:00
|
|
|
}
|
2022-08-12 10:21:25 +08:00
|
|
|
</script>
|
|
|
|
|
|
2022-08-24 15:52:18 +08:00
|
|
|
<style lang="less" scoped></style>
|