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.
47 lines
879 B
47 lines
879 B
2 years ago
|
<template>
|
||
|
<dv-border-box-1>
|
||
|
<section class="operation">
|
||
|
<div class="leftBox">
|
||
|
<leftTop></leftTop>
|
||
|
<leftBottom></leftBottom>
|
||
|
</div>
|
||
|
<div class="rightBox">
|
||
|
<rightMiddle></rightMiddle>
|
||
|
</div>
|
||
|
</section>
|
||
|
</dv-border-box-1>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import leftTop from './leftTop/index.vue';
|
||
|
import leftBottom from './leftBottom/index.vue';
|
||
|
import rightMiddle from './rightMiddle/index.vue';
|
||
|
export default {
|
||
|
components: {
|
||
|
leftTop,
|
||
|
leftBottom,
|
||
|
rightMiddle,
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.operation {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
padding: 20px;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
.leftBox {
|
||
|
flex-basis: 30%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.rightBox {
|
||
|
flex-basis: 69%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|