|
@@ -32,7 +32,7 @@
|
|
|
</div>
|
|
|
<div class="item">
|
|
|
<div>
|
|
|
- <span class="title">当月出栏量:</span>
|
|
|
+ <span class="title">肉羊价:</span>
|
|
|
<span class="num">56.5</span>
|
|
|
<span class="unit">元/kg</span>
|
|
|
</div>
|
|
@@ -48,7 +48,7 @@
|
|
|
</div>
|
|
|
<div class="item">
|
|
|
<div>
|
|
|
- <span class="title">当月出栏量:</span>
|
|
|
+ <span class="title">产值:</span>
|
|
|
<span class="num">8534</span>
|
|
|
<span class="unit">万元</span>
|
|
|
</div>
|
|
@@ -65,12 +65,20 @@
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
<div class="warp">
|
|
|
- <div class="cell"></div>
|
|
|
- <div class="cell"></div>
|
|
|
+ <div class="cell cell1">
|
|
|
+ <img src="../../assets/u871.jpg" width="80%" height="80%" />
|
|
|
+ </div>
|
|
|
+ <div class="cell cell2">
|
|
|
+ <img src="../../assets/u871.jpg" width="80%" height="80%" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="warp">
|
|
|
- <div class="cell"></div>
|
|
|
- <div class="cell"></div>
|
|
|
+ <div class="cell">
|
|
|
+ <E-Right1 style="height: 100%"></E-Right1>
|
|
|
+ </div>
|
|
|
+ <div class="cell">
|
|
|
+ <E-Right2 style="height: 100%"></E-Right2>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</section>
|
|
@@ -81,21 +89,39 @@
|
|
|
<div class="cell_two">
|
|
|
<E-Bottom2 style="height: 100%"></E-Bottom2>
|
|
|
</div>
|
|
|
- <div class="cell_three"></div>
|
|
|
- <div class="cell_four"></div>
|
|
|
+ <div class="cell_three">
|
|
|
+ <E-Bottom3 style="height: 100%"></E-Bottom3>
|
|
|
+ </div>
|
|
|
+ <div class="cell_four">
|
|
|
+ <E-Bottom4 style="height: 100%"></E-Bottom4>
|
|
|
+ </div>
|
|
|
</footer>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import ELeft1 from './charts/ELeft1'
|
|
|
-import ELeft2 from './charts/ELeft2'
|
|
|
-import EBottom1 from './charts/EBottom1'
|
|
|
-import EBottom2 from './charts/EBottom2'
|
|
|
-import EMiddleMap from './charts/EMiddleMap'
|
|
|
+import ELeft1 from "./charts/ELeft1";
|
|
|
+import ELeft2 from "./charts/ELeft2";
|
|
|
+import ERight1 from "./charts/ERight1";
|
|
|
+import ERight2 from "./charts/ERight2";
|
|
|
+import EBottom1 from "./charts/EBottom1";
|
|
|
+import EBottom2 from "./charts/EBottom2";
|
|
|
+import EBottom3 from "./charts/EBottom3";
|
|
|
+import EBottom4 from "./charts/EBottom4";
|
|
|
+import EMiddleMap from "./charts/EMiddleMap";
|
|
|
export default {
|
|
|
name: "Yield",
|
|
|
- components: {ELeft1, ELeft2, EBottom1, EBottom2, EMiddleMap},
|
|
|
+ components: {
|
|
|
+ ELeft1,
|
|
|
+ ELeft2,
|
|
|
+ ERight1,
|
|
|
+ ERight2,
|
|
|
+ EBottom1,
|
|
|
+ EBottom2,
|
|
|
+ EMiddleMap,
|
|
|
+ EBottom3,
|
|
|
+ EBottom4
|
|
|
+ },
|
|
|
data() {
|
|
|
return {};
|
|
|
},
|
|
@@ -106,7 +132,9 @@ export default {
|
|
|
|
|
|
<style lang="scss" scope>
|
|
|
.Yield {
|
|
|
- background-color: #162661;
|
|
|
+ background-image: url(../../assets/bg.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
@@ -129,7 +157,7 @@ export default {
|
|
|
border: 1px solid rgb(62, 58, 128);
|
|
|
height: 61%;
|
|
|
display: flex;
|
|
|
- >.left {
|
|
|
+ > .left {
|
|
|
width: 32%;
|
|
|
border: 1px solid rgb(218, 99, 99);
|
|
|
display: flex;
|
|
@@ -165,28 +193,36 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- .bottom{
|
|
|
+ .bottom {
|
|
|
flex-grow: 1;
|
|
|
display: flex;
|
|
|
}
|
|
|
}
|
|
|
- >.center {
|
|
|
+ > .center {
|
|
|
width: 36%;
|
|
|
border: 1px solid rgb(163, 147, 58);
|
|
|
}
|
|
|
- >.right {
|
|
|
+ > .right {
|
|
|
width: 32%;
|
|
|
border: 1px solid rgb(23, 131, 116);
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
justify-content: space-between;
|
|
|
- >.warp{
|
|
|
+ > .warp {
|
|
|
height: 48%;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
- >.cell{
|
|
|
- border: 1px solid rgb(163, 58, 58);
|
|
|
+ > .cell {
|
|
|
width: 48.5%;
|
|
|
+ background-image: url(../../assets/download.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ }
|
|
|
+ > .cell1,
|
|
|
+ .cell2 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
}
|
|
|
}
|
|
|
}
|