feat:调研页面表格,创建调研和管理页面

This commit is contained in:
岳佳鑫
2022-10-10 18:18:11 +08:00
parent 27b783c10e
commit e843bef08f
8 changed files with 310 additions and 7 deletions

View File

@@ -0,0 +1,33 @@
<!-- 任务页面 -->
<template>
<div class="taskpage">
<div class="header">
<div class="box">
<img src="../../assets/images/projectadd/picture.png"/>
</div>
</div>
<div class="split"></div>
<div>2</div>
</div>
</template>
<style lang="scss">
.taskpage {
width: 100%;
display: flex;
flex-direction: column;
.header {
width: 100%;
display: flex;
.box {
border: 12px solid #E7F2FF;
margin: 16px 0 16px 19px;
border-radius: 8px;
}
}
.split {
width: 100%;
height: 20px;
background-color: #edf0f5;
}
}
</style>