中建四局(进度管理):完成布局
This commit is contained in:
parent
8bb6c849ae
commit
a64aa98165
@ -1,16 +1,45 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="progress">progress</div>
|
<div class="progress">
|
||||||
|
<div class="top">
|
||||||
|
<div class="left"></div>
|
||||||
|
<div class="right">
|
||||||
|
<TopRight />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bottom"></div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {}
|
import TopRight from './topRight.vue'
|
||||||
|
export default {
|
||||||
|
components: { TopRight }
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.progress {
|
.progress {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: url(../assets/temp/4.png) no-repeat;
|
// background: url(../assets/temp/4.png) no-repeat;
|
||||||
background-size: 100% 100%;
|
// background-size: 100% 100%;
|
||||||
|
.top {
|
||||||
|
height: 74%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
.left {
|
||||||
|
width: 76%;
|
||||||
|
height: 100%;
|
||||||
|
border: 1px solid skyblue;
|
||||||
|
}
|
||||||
|
.right {
|
||||||
|
width: calc(24% - 20px);
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
height: 26%;
|
||||||
|
border: 1px solid skyblue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
14
src/views/projectAdmin/zjsj/progress/topRight.vue
Normal file
14
src/views/projectAdmin/zjsj/progress/topRight.vue
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<Card title="进度任务">
|
||||||
|
进度任务
|
||||||
|
</Card>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Card from '../components/Card.vue'
|
||||||
|
export default {
|
||||||
|
components: { Card }
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
Loading…
x
Reference in New Issue
Block a user