pc端
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.

27 lines
408 B

<template>
<div class="task-detail">
<div class="task-con">任务详情页</div>
<div>
<router-view></router-view>
</div>
</div>
</template>
<script setup></script>
<style scoped>
.task-detail {
width: 100%;
height: 100%;
padding: 15px 12px;
}
.task-con {
width: 100%;
height: 500px;
background-color: #fff;
border-radius: 10px;
border: 1px solid #cccccc;
}
</style>