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.
48 lines
927 B
48 lines
927 B
<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>
|
|
@import '@/assets/scss/pxtovw.scss';
|
|
.operation {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: vw(20);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.leftBox {
|
|
flex-basis: vw(462);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.rightBox {
|
|
flex-basis: vw(1326);
|
|
}
|
|
}
|
|
</style>
|