yunxing 4 년 전
부모
커밋
9c0f625025

+ 12 - 0
src/router/index.ts

@@ -55,6 +55,18 @@ const routes: Array<RouteConfig> = [
             showTabbar: true,
         },
     },
+    // 设备设置 --> 机房平面布置图
+    {
+        path: '/engineRoomPicture',
+        name: 'EngineRoomPicture',
+        component: () => import(/* webpackChunkName: "equipmentFacilities" */ '../views/equipmentFacilities/EngineRoomPicture.vue'),
+        meta: {
+            keepAlive: true,
+            showTabbar: false,
+            hideNarBar: true,
+        },
+    },
+    // 设备设置 --> 楼层分布
     {
         path: '/systemFloor',
         name: 'SystemFloor',

+ 75 - 0
src/views/equipmentFacilities/EngineRoomPicture copy.vue

@@ -0,0 +1,75 @@
+<template>
+    <div class='engine-room-picture'>
+        <van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
+            <template #right>
+                <i class='iconfont wanda-scan'></i>
+            </template>
+        </van-nav-bar>
+        <van-list class='room-list' v-model='loading' :finished='finished' finished-text='已经到底了' @load='onLoad'>
+            <van-cell v-for='item in list' :key='item' :title='item' />
+        </van-list>
+    </div>
+</template>
+<script>
+/**
+ * 机房平面布置图
+ */
+import Vue from 'vue'
+import { NavBar, List, Cell } from 'vant'
+Vue.use(NavBar).use(List).use(Cell)
+export default {
+    name: 'EngineRoomPicture',
+    props: {},
+    data() {
+        return {
+            title: '机房平面布置图',
+            list: [],
+            loading: false,
+            finished: false,
+        }
+    },
+    components: {},
+    beforeMount() {},
+    mounted() {},
+    methods: {
+        backPage() {
+            this.$router.go(-1)
+        },
+        handleRightClick() {
+            console.log(1111)
+        },
+        onLoad() {
+            console.log('onload')
+            // 异步更新数据
+            // setTimeout 仅做示例,真实场景中一般为 ajax 请求
+            setTimeout(() => {
+                for (let i = 0; i < 10; i++) {
+                    this.list.push(this.list.length + 1)
+                }
+
+                // 加载状态结束
+                this.loading = false
+
+                // 数据全部加载完成
+                if (this.list.length >= 40) {
+                    this.finished = true
+                }
+            }, 1000)
+        },
+    },
+}
+</script>
+<style lang='less' scoped>
+.engine-room-picture {
+    width: 100%;
+    height: 100%;
+    // 返回箭头修改
+    /deep/ .van-nav-bar .van-icon {
+        color: #000;
+    }
+    .room-list {
+        height: calc(100% - 45px);
+        overflow: auto;
+    }
+}
+</style>

+ 75 - 0
src/views/equipmentFacilities/EngineRoomPicture.vue

@@ -0,0 +1,75 @@
+<template>
+    <div class='engine-room-picture'>
+        <van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
+            <template #right>
+                <i class='iconfont wanda-scan'></i>
+            </template>
+        </van-nav-bar>
+        <van-list class='room-list' v-model='loading' :finished='finished' finished-text='已经到底了' @load='onLoad'>
+            <van-cell v-for='item in list' :key='item' :title='item' />
+        </van-list>
+    </div>
+</template>
+<script>
+/**
+ * 机房平面布置图
+ */
+import Vue from 'vue'
+import { NavBar, List, Cell } from 'vant'
+Vue.use(NavBar).use(List).use(Cell)
+export default {
+    name: 'EngineRoomPicture',
+    props: {},
+    data() {
+        return {
+            title: '机房平面布置图',
+            list: [],
+            loading: false,
+            finished: false,
+        }
+    },
+    components: {},
+    beforeMount() {},
+    mounted() {},
+    methods: {
+        backPage() {
+            this.$router.go(-1)
+        },
+        handleRightClick() {
+            console.log(1111)
+        },
+        onLoad() {
+            console.log('onload')
+            // 异步更新数据
+            // setTimeout 仅做示例,真实场景中一般为 ajax 请求
+            setTimeout(() => {
+                for (let i = 0; i < 10; i++) {
+                    this.list.push(this.list.length + 1)
+                }
+
+                // 加载状态结束
+                this.loading = false
+
+                // 数据全部加载完成
+                if (this.list.length >= 40) {
+                    this.finished = true
+                }
+            }, 1000)
+        },
+    },
+}
+</script>
+<style lang='less' scoped>
+.engine-room-picture {
+    width: 100%;
+    height: 100%;
+    // 返回箭头修改
+    /deep/ .van-nav-bar .van-icon {
+        color: #000;
+    }
+    .room-list {
+        height: calc(100% - 45px);
+        overflow: auto;
+    }
+}
+</style>

+ 5 - 3
src/views/equipmentFacilities/index.vue

@@ -150,11 +150,13 @@ export default {
          */
         handleImg(item) {},
         /**
-         * 机房平面布置图
+         * 跳转 机房平面布置图
          */
-        handleRoom(item) {},
+        handleRoom(item) {
+            this.$router.push({ name: 'EngineRoomPicture', params: {} })
+        },
         /**
-         * 跳转楼层分布
+         * 跳转 楼层分布
          */
         handleFloor(item) {
             let title = this.systemText + '-楼层分布'