2022-08-11 18:43:34 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="containerBox">
|
2022-08-31 18:07:01 +08:00
|
|
|
<div class="leftBox">
|
2022-08-12 10:21:25 +08:00
|
|
|
<div class="leftOne">
|
2022-08-31 18:07:01 +08:00
|
|
|
<LeftOne />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="leftTwo">
|
2022-08-31 18:07:01 +08:00
|
|
|
<LeftTwo />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="leftThree">
|
2022-08-31 18:07:01 +08:00
|
|
|
<LeftThree />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="leftFour">
|
2022-08-31 18:07:01 +08:00
|
|
|
<LeftFour />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
2022-08-11 18:43:34 +08:00
|
|
|
</div>
|
2022-08-12 10:21:25 +08:00
|
|
|
<div class="centerBox">
|
|
|
|
|
<div class="centerTop">
|
2022-08-31 18:07:01 +08:00
|
|
|
<Center />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="centerBot">
|
|
|
|
|
<div class="one">
|
2022-08-31 18:07:01 +08:00
|
|
|
<CenterBOne />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="two">
|
2022-08-31 18:07:01 +08:00
|
|
|
<CenterBTwo />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="rightBox">
|
|
|
|
|
<div class="rightOne">
|
2022-08-31 18:07:01 +08:00
|
|
|
<RightOne />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="rightTwo">
|
2022-08-31 18:07:01 +08:00
|
|
|
<RightTwo />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="rightThree">
|
2022-08-31 18:07:01 +08:00
|
|
|
<RightThree />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="rightFour">
|
2022-08-31 18:07:01 +08:00
|
|
|
<RightFour />
|
2022-08-12 10:21:25 +08:00
|
|
|
</div>
|
2022-08-31 18:07:01 +08:00
|
|
|
</div>
|
2022-08-11 18:43:34 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-08-31 18:07:01 +08:00
|
|
|
import LeftOne from './LeftOne'
|
|
|
|
|
import LeftTwo from './LeftTwo'
|
|
|
|
|
import LeftThree from './LeftThree'
|
|
|
|
|
import LeftFour from './LeftFour'
|
|
|
|
|
import Center from './Center'
|
|
|
|
|
import CenterBOne from './CenterBOne'
|
|
|
|
|
import CenterBTwo from './CenterBTwo'
|
|
|
|
|
import RightOne from './RightOne'
|
|
|
|
|
import RightTwo from './RightTwo'
|
|
|
|
|
import RightThree from './RightThree'
|
|
|
|
|
import RightFour from './RightFour'
|
2022-08-12 10:21:25 +08:00
|
|
|
|
2022-08-11 18:43:34 +08:00
|
|
|
export default {
|
2022-08-31 18:07:01 +08:00
|
|
|
components: {
|
|
|
|
|
LeftOne,
|
|
|
|
|
LeftTwo,
|
|
|
|
|
LeftThree,
|
|
|
|
|
LeftFour,
|
|
|
|
|
Center,
|
|
|
|
|
CenterBOne,
|
|
|
|
|
CenterBTwo,
|
|
|
|
|
RightOne,
|
|
|
|
|
RightTwo,
|
|
|
|
|
RightThree,
|
|
|
|
|
RightFour
|
|
|
|
|
},
|
2022-08-11 18:43:34 +08:00
|
|
|
data() {
|
2022-08-24 18:23:44 +08:00
|
|
|
return {}
|
2022-08-11 18:43:34 +08:00
|
|
|
}
|
2022-08-24 18:23:44 +08:00
|
|
|
}
|
2022-08-11 18:43:34 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
2022-08-12 10:21:25 +08:00
|
|
|
.containerBox {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-08-31 18:07:01 +08:00
|
|
|
// background: url(../assets/temp/1.png) no-repeat;
|
2022-08-24 18:23:44 +08:00
|
|
|
background-size: 100% 100%;
|
2022-08-12 10:21:25 +08:00
|
|
|
.leftBox {
|
|
|
|
|
width: 25%;
|
|
|
|
|
.leftOne {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30%;
|
|
|
|
|
}
|
|
|
|
|
.leftTwo,
|
|
|
|
|
.leftThree,
|
|
|
|
|
.leftFour {
|
|
|
|
|
height: 25%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.centerBox {
|
|
|
|
|
width: 50%;
|
|
|
|
|
margin-left: 2%;
|
|
|
|
|
margin-right: 2%;
|
2022-08-24 18:23:44 +08:00
|
|
|
.centerTop {
|
2022-08-12 10:21:25 +08:00
|
|
|
height: 78%;
|
|
|
|
|
background-color: #11a0a6;
|
|
|
|
|
}
|
2022-08-24 18:23:44 +08:00
|
|
|
.centerBot {
|
2022-08-12 10:21:25 +08:00
|
|
|
margin-top: 2%;
|
|
|
|
|
display: flex;
|
2022-08-24 18:23:44 +08:00
|
|
|
.one {
|
2022-08-12 10:21:25 +08:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
2022-08-24 18:23:44 +08:00
|
|
|
.two {
|
2022-08-12 10:21:25 +08:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.rightBox {
|
|
|
|
|
width: 25%;
|
|
|
|
|
.rightOne {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 30%;
|
|
|
|
|
}
|
|
|
|
|
.rightTwo,
|
|
|
|
|
.rightThree,
|
|
|
|
|
.rightFour {
|
|
|
|
|
height: 25%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-24 18:23:44 +08:00
|
|
|
</style>
|