|
@@ -0,0 +1,90 @@
|
|
|
+<template>
|
|
|
+ <div class="Yield">
|
|
|
+ <header>
|
|
|
+ <h1 class="title">湖羊全产业链数字化管理系统</h1>
|
|
|
+ </header>
|
|
|
+ <section>
|
|
|
+ <div class="left"></div>
|
|
|
+ <div class="center"></div>
|
|
|
+ <div class="right"></div>
|
|
|
+ </section>
|
|
|
+ <footer>
|
|
|
+ <div class="cell_one"></div>
|
|
|
+ <div class="cell_two"></div>
|
|
|
+ <div class="cell_three"></div>
|
|
|
+ <div class="cell_four"></div>
|
|
|
+ </footer>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "Yield",
|
|
|
+ data() {
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ created() {},
|
|
|
+ methods: {},
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scope>
|
|
|
+.Yield {
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ > header {
|
|
|
+ border: 1px solid rgb(218, 99, 99);
|
|
|
+ height: 12.2%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ .title{
|
|
|
+ background-color: #0D1943;
|
|
|
+ width: 46%;
|
|
|
+ height: 100%;
|
|
|
+ font-size: 50px;
|
|
|
+ color: #FFF;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ > section {
|
|
|
+ border: 1px solid rgb(62, 58, 128);
|
|
|
+ height: 61%;
|
|
|
+ display: flex;
|
|
|
+ .left{
|
|
|
+ flex-grow: 1;
|
|
|
+ border: 1px solid rgb(218, 99, 99);
|
|
|
+ }
|
|
|
+ .center{
|
|
|
+ flex-grow: 1;
|
|
|
+ border: 1px solid rgb(163, 147, 58);
|
|
|
+ }
|
|
|
+ .right{
|
|
|
+ flex-grow: 1;
|
|
|
+ border: 1px solid rgb(23, 131, 116);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ > footer {
|
|
|
+ border: 1px solid rgb(32, 60, 138);
|
|
|
+ flex-grow: 1;
|
|
|
+ display: flex;
|
|
|
+ .cell_one{
|
|
|
+ border: 1px solid rgb(126, 95, 38);
|
|
|
+ flex-grow: 1;
|
|
|
+ }
|
|
|
+ .cell_two{
|
|
|
+ border: 1px solid rgb(61, 90, 38);
|
|
|
+ flex-grow: 1;
|
|
|
+ }
|
|
|
+ .cell_three{
|
|
|
+ border: 1px solid rgb(176, 86, 204);
|
|
|
+ flex-grow: 1;
|
|
|
+ }
|
|
|
+ .cell_four{
|
|
|
+ border: 1px solid rgb(218, 99, 99);
|
|
|
+ flex-grow: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|