Commit 6917be1e authored by xinzhedeai's avatar xinzhedeai

add: footer

parent 6485d7b0
...@@ -5,21 +5,16 @@ ...@@ -5,21 +5,16 @@
</div> </div>
<div class="m-body"> <div class="m-body">
<div class="warehouse-info"> <div class="warehouse-info">
<el-carousel height="1.4rem" indicator-position="none" :interval="0" trigger="none">
<el-carousel-item
v-for="Warehose in 10"
:key="Warehose.id"
>
<div class="warehouse-cover"> <div class="warehouse-cover">
<div v-for="item in 10"> <div v-for="item in 3">
<div class="liquid-chart" :id="`liquidfill${item}`"> <div class="liquid-chart" :id="`liquidfill${item}`">
{{ item }} {{ item }}
</div> </div>
<p>{{ item }}哈哈</p> <p>{{ item }}哈哈</p>
</div> </div>
</div> </div>
</el-carousel-item>
</el-carousel>
<div class="chart-wrapper"> <div class="chart-wrapper">
<div id="chart" ref="chart" style="width: 4.5rem; height: 3rem;"></div> <div id="chart" ref="chart" style="width: 4.5rem; height: 3rem;"></div>
</div> </div>
...@@ -116,7 +111,7 @@ export default { ...@@ -116,7 +111,7 @@ export default {
height: 5.81rem; height: 5.81rem;
.warehouse-cover { .warehouse-cover {
width: 3.8rem; width: 3.8rem;
height: 100%; height: 1.22rem;
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
......
...@@ -39,7 +39,7 @@ import Highcharts from "highcharts/highcharts"; ...@@ -39,7 +39,7 @@ import Highcharts from "highcharts/highcharts";
import highcharts3d from "highcharts/highcharts-3d"; import highcharts3d from "highcharts/highcharts-3d";
highcharts3d(Highcharts); highcharts3d(Highcharts);
import { listPlans } from "@/api/avoidanceSys/qiaoliang"; import { getChartData, getListData } from "@/api/avoidanceSys/qiaoliang";
export default { export default {
props: { props: {
...@@ -195,14 +195,14 @@ export default { ...@@ -195,14 +195,14 @@ export default {
}, },
methods: { methods: {
getQiaoliangList(){ getQiaoliangList(type){
}, },
generatePieData() { generatePieData() {
return this.dataList.map((item, index) => ({ return this.dataList.map((item, index) => ({
name: item.name, name: item.name,
y: item.y, y: item.value,
color: this.colors[index] || "#27BAFF", // Default color if no color is provided color: this.colors[index] || "#27BAFF", // Default color if no color is provided
})); }));
}, },
......
...@@ -43,12 +43,14 @@ ...@@ -43,12 +43,14 @@
<QiaoliangMonitor/> <QiaoliangMonitor/>
</div> </div>
<div class="a-md34" id="amd34"> <div class="a-md34" id="amd34">
<AiAnalysis /> <!-- <AiAnalysis /> -->
</div> </div>
</div> </div>
</div> </div>
</section> </section>
</div> </div>
<footer></footer>
</div> </div>
</template> </template>
...@@ -276,6 +278,21 @@ export default { ...@@ -276,6 +278,21 @@ export default {
</script> </script>
<style lang="scss" scope> <style lang="scss" scope>
footer{
width: 19.2rem;
height: 0.35rem;
background-image: url("../assets/images/dpNew3/bottom_title.png");
// background-repeat: no-repeat;
// background-position-x:2rem;
background-position: bottom;
background-size: cover;
position: absolute;
bottom: 0;
z-index: 99;
// background-color: pink;
}
.amap-logo, .amap-copyright { .amap-logo, .amap-copyright {
display: none !important; display: none !important;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment