Quellcode durchsuchen

feat 横屏3 无冷站

anxiaoxia vor 3 Jahren
Ursprung
Commit
2d6608841d

BIN
src/assets/horImg/hor_lastMonthEner.png


BIN
src/assets/horImg/hor_lastMonthTotal.png


+ 11 - 1
src/router/index.ts

@@ -19,7 +19,17 @@ const routes: Array<RouteConfig> = [
     path: '/hor',
     name: 'hor',
     component: () => import( '../views/valueDelivery.vue')
-  }
+  },
+  {
+    path: '/horTwo',
+    name: 'horTwo',
+    component: () => import( '../views/horTwo.vue')
+  },
+  {
+    path: '/horThree',
+    name: 'horThree',
+    component: () => import( '../views/horThree.vue')
+  },
   
 ]
 

+ 17 - 3
src/views/Home.vue

@@ -2,7 +2,9 @@
   <div class="home">
       <el-button >文字按钮</el-button>
     <div @click="skipPage">跳转about页面</div>
-    <div @click="skipPagew">跳转 横屏 页面</div>
+    <div @click="skipPagew('one')">跳转 横屏1 页面</div>
+    <div @click="skipPagew('tow')">跳转 横屏2 页面</div>
+    <div @click="skipPagew('three')">跳转 横屏3 页面</div>
   </div>
 </template>
 
@@ -18,8 +20,20 @@ export default {
       skipPage:function(){
           this.$router.push({ name: 'About'});
       },
-      skipPagew:function(){
-          this.$router.push({ name: 'hor'});
+      skipPagew:function(type){
+          switch (type) {
+              case "tow":
+                this.$router.push({ name: 'horTwo'});
+                  break;
+              case 'three':
+                this.$router.push({ name: 'horThree'});
+                  break;
+          
+              default:
+                   this.$router.push({ name: 'hor'});
+                  break;
+          }
+         
       }
 
   }

+ 190 - 0
src/views/horThree.vue

@@ -0,0 +1,190 @@
+<template>
+    <div class="horThree">
+        <div class="bg">
+            <img
+                :src="bgImg"
+                alt=""
+            >
+        </div>
+        <div class="container">
+            <div class="hor-head">
+                <HorHead />
+            </div>
+            <div class="hor-nowData-content">
+                <div class="flexBetween">
+                    <div class="left box">
+                        <div class="left-bg bg1">
+                            <img :src="lastMonthTotal" />
+                        </div>
+                        <div class="left-title car-title">
+                            <div>上月总能耗</div>
+                            <div class="left-title-text">低能耗亲自然</div>
+                        </div>
+                        <div>
+                            <span>比基准能耗</span>
+                            <span>节能50%</span>
+                            <span>总能耗28050KWh</span>
+                        </div>
+                    </div>
+                    <div class="right box">
+                        <div class="right-bg bg1">
+                            <img :src="lastMonthEner" />
+                        </div>
+                        <div class="right-title car-title">
+                            <span>上月节约能耗</span>
+                        </div>
+                        <div class="elect">
+                            <div>节约电</div>
+                            <div> <span>23456</span>度</div>
+                        </div>
+                        <div class="and">
+                            <span>相当于</span>
+                        </div>
+                        <div class="CO2 common">
+                            <span>减排<i class="num">5kg</i>二氧化碳</span>
+                        </div>
+                        <div class="carbon common">
+                            <span>减排<i class="num">5kg</i>碳</span>
+                        </div>
+                        <div class="tree common">
+
+                            <span>为国家种<i class="num">5</i>棵树</span>
+                        </div>
+                    </div>
+                </div>
+                <div class="chart-box box">
+                    上月总能耗
+                </div>
+            </div>
+
+        </div>
+    </div>
+</template>
+<script lang="ts">
+import Vue from "vue";
+declare function require(img: string): string;
+const hor_big_bg = require("@/assets/horImg/hor_big_bg.png");
+const hor_lastMonthEner = require("@/assets/horImg/hor_lastMonthEner.png");
+const hor_lastMonthTotal = require("@/assets/horImg/hor_lastMonthTotal.png");
+import HorHead from "./valueDelivery/HorHead.vue";
+
+export default Vue.extend({
+    components: { HorHead },
+    data() {
+        return {
+            bgImg: hor_big_bg,
+            lastMonthEner: hor_lastMonthEner,
+            lastMonthTotal: hor_lastMonthTotal,
+        };
+    },
+});
+</script>
+<style lang="less" scoped>
+.horThree {
+    color: #3b3558;
+    .hor-head {
+        // padding-top: 32px;
+        display: flex;
+        justify-content: center;
+    }
+    .bg {
+        position: absolute;
+        z-index: -2;
+    }
+    .bg1 {
+        position: absolute;
+        z-index: -1;
+    }
+
+    .flexBetween {
+        display: flex;
+        justify-content: space-between;
+    }
+    .box {
+        z-index: -1;
+        border-radius: 20px;
+        border: 2px solid #ffffff;
+        background: #ffffffcc;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+    }
+
+    .car-title {
+        position: absolute;
+        top: 20px;
+        left: 24px;
+        font-size: 20px;
+        font-weight: 600;
+        line-height: 28px;
+    }
+    .hor-nowData-content {
+        padding: 32px 20px;
+        box-sizing: border-box;
+        .content-left-next {
+            padding-top: 27px;
+        }
+    }
+    .left {
+        position: relative;
+        height: 556px;
+        width: 678px;
+        .left-title-text {
+            font-size: 14px;
+            font-weight: 400;
+            line-height: 20px;
+        }
+    }
+    .right {
+        position: relative;
+        height: 556px;
+        width: 1138px;
+        .elect {
+            position: absolute;
+            left: 180px;
+            top: 240px;
+            text-align: center;
+            font-size: 24px;
+            font-weight: 600;
+            line-height: 34px;
+            color: #ffffff;
+        }
+        .and {
+            position: absolute;
+            left: 353px;
+            top: 263px;
+            font-size: 20px;
+            font-weight: 500;
+            line-height: 28px;
+        }
+        .common {
+            position: absolute;
+            left: 680px;
+            font-size: 24px;
+            font-weight: 500;
+            line-height: 34px;
+        }
+        .num {
+            font-family: Persagy;
+            font-style: normal;
+            font-weight: 700;
+            line-height: 29px;
+        }
+
+        .carbon {
+            top: 120px;
+        }
+        .CO2 {
+            top: 260px;
+        }
+        .tree {
+            top: 400px;
+        }
+    }
+    .chart-box{
+        margin-top: 24px;
+    }
+}
+</style>
+
+

+ 16 - 0
src/views/horTwo.vue

@@ -0,0 +1,16 @@
+<template>
+    <div class="horTwo">
+        2
+    </div>
+</template>
+<script lang="ts">
+import Vue from 'vue'
+export default Vue.extend({
+    data() {
+        return {
+            
+        }
+    },
+})
+</script>
+

+ 1 - 1
src/views/valueDelivery.vue

@@ -7,7 +7,7 @@
             >
         </div>
 
-        <div class="hor-nowData">
+        <div class="container">
             <div class="hor-head">
                 <HorHead />
             </div>