Bläddra i källkod

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-bm-guide into develop

shaun-sheep 4 år sedan
förälder
incheckning
aea8d81e55

+ 3 - 3
src/api/public.js

@@ -28,8 +28,8 @@ export function updateStatis({ postParams }) {
 }
 
 // 查询系统图备注-(后期可能不需要)
-export function queryRead({ postParams }) {
-    return httputils.fetchJson(`/serve/topology-wanda/graph/read`, postParams)
+export function queryRead({ data, postParams }) {
+    return httputils.fetchJson(`/serve/topology-wanda/graph/read`, data, postParams)
 }
 
 // 修改系统图备注
@@ -40,4 +40,4 @@ export function updateRead({ postParams }) {
 //查询系统图展示所需数据 --平面图业务数据
 export function readGroup(postParams) {
     return httputils.fetchJson(`/serve/topology-wanda/graph/read`, postParams)
-}
+}

+ 8 - 6
src/components/Legend/src/legend.vue

@@ -104,13 +104,15 @@ export default {
         },
         // 查询备注
         queryMarks() {
-            let params = {
-                postParams: {
-                    categoryId: this.$cookie.get('categoryId'),
-                    projectId: this.$store.state.plazaId
-                }
+            let postParams = {
+                categoryId: this.$cookie.get('categoryId'),
+                projectId: this.$store.state.plazaId,
+                BuildingID: '1',
+                FloorID: this.$cookie.get('floorNow')
             }
-            queryRead(params).then(res => {
+
+            let data = {}
+            queryRead({ data, postParams }).then(res => {
                 //console.log('备注', res.data.Data[0].Note)
                 if (res.data.Data[0].Note) {
                     let note = res.data.Data[0].Note

+ 7 - 5
src/components/PicLarge/src/picLarge.vue

@@ -73,7 +73,6 @@ export default {
             margin-bottom: 0;
             width: 180px;
             margin: 0 auto;
-
             li {
                 width: 180px;
                 height: 135px;
@@ -120,10 +119,13 @@ export default {
 </style>
 <style lang="less">
 .tpyl-1 {
-    height: 90% !important;
-    margin-top: 5vh !important;
-    .el-dialog__body {
-        padding: 0;
+    overflow: hidden;
+    .el-dialog {
+        height: 90vh !important;
+        margin-top: 5vh !important;
+        .el-dialog__body {
+            padding: 10px;
+        }
     }
 }
 </style>

+ 89 - 71
src/components/floorList.vue

@@ -6,14 +6,19 @@
 <template>
     <div class='floor-box'>
         <div class='floor-list'>
-            <!-- <i class='el-icon-caret-top icon-top' v-if='showT' @click='removeTop(num)'></i> -->
             <div v-if='floorsArr.length>5'>
-                <i class='el-icon-caret-top icon-top' v-if='showT' @click='changeFloor(1)'></i>
-                <i class='el-icon-caret-top icon-top' v-else style='color:#ccc'></i>
+                <i
+                    class='el-icon-caret-top icon-top'
+                    :class='{disabled:currentFloorId == floorsArr[0].seq }'
+                    v-if='showT'
+                    @click='changeFloor(1)'
+                    @mousedown='mousedown'
+                    @mouseup='mouseup'
+                ></i>
+                <i class='el-icon-caret-top icon-top' :class='{disabled:currentFloorId == floorsArr[0].seq }' v-else style='color:#ccc'></i>
             </div>
-
             <div class='floor-out'>
-                <div class='floor-center'>
+                <div class='floor-center' :style='{ marginTop : marginTop }'>
                     <div
                         class='floor-item'
                         :class='item.seq == currentFloorId?"isActive":""'
@@ -23,16 +28,24 @@
                     >{{item.code}}</div>
                 </div>
             </div>
-            <!-- <i class='el-icon-caret-bottom icon-bottom' v-if='showB' @click='removeBottom(num)'></i> -->
             <div v-if='floorsArr.length>5'>
-                <i class='el-icon-caret-bottom icon-bottom' v-if='showB' @click='changeFloor(-1)'></i>
-                <i class='el-icon-caret-bottom icon-bottom' v-else style='color:#ccc'></i>
+                <i
+                    class='el-icon-caret-bottom icon-bottom'
+                    :class='{disabled:currentFloorId == floorsArr[floorsArr.length-1].seq }'
+                    v-if='showB'
+                    @click='changeFloor(-1)'
+                ></i>
+                <i
+                    class='el-icon-caret-bottom icon-bottom'
+                    :class='{disabled:currentFloorId == floorsArr[floorsArr.length-1].seq }'
+                    v-else
+                    style='color:#ccc'
+                ></i>
             </div>
         </div>
     </div>
 </template>
 <script>
-import { animate } from '@/utils/animate.js'
 export default {
     data() {
         return {
@@ -48,10 +61,31 @@ export default {
                 name: '第1层',
                 seq: 100
             },
-            currentFloorId: null
+            currentFloorId: null,
+            marginTop: 0,
+            startTime: '',
+            endTime: ''
+        }
+    },
+    props: {
+        floorsArr: {
+            type: Array
+            /*  default: () => {
+                return [
+                    { name: '第6层', code: 'F6', gname: 'f6', gcode: '6F', seq: 600 },
+                    { name: '第5层', code: 'F5', gname: 'f5', gcode: '5F', seq: 500 },
+                    { name: '第4层', code: 'F4', gname: 'f4', gcode: '4F', seq: 400 },
+                    { name: '第3层', code: 'F3', gname: 'f3', gcode: '3F', seq: 300 },
+                    { name: '第2层', code: 'F2', gname: 'f2', gcode: '2F', seq: 200 },
+                    { name: '第1层', code: 'F1', gname: 'f1', gcode: '1F', seq: 100 },
+                    { name: '地下1层', code: 'B1', gname: 'b1', gcode: 'B1', seq: -100 },
+                    { name: '地下2层', code: 'B2', gname: 'b2', gcode: 'B2', seq: -200 },
+                    { name: '地下3层', code: 'B3', gname: 'b3', gcode: 'B3', seq: -300 },
+                    { name: '地下4层', code: 'B4', gname: 'b4', gcode: 'B4', seq: -400 }
+                ]
+            } */
         }
     },
-    props: ['floorsArr'],
     mounted() {
         this.init()
     },
@@ -65,6 +99,16 @@ export default {
         // }
     },
     methods: {
+        mousedown() {
+            this.startTime = new Date()
+            console.log()
+        },
+        mouseup() {
+            this.endTime = new Date()
+            if (this.endTime - this.startTime < 200) {
+                return false
+            }
+        },
         init() {
             if (!this.floorsArr.length) {
                 return false
@@ -95,27 +139,12 @@ export default {
             }
             // 数据处理
             this.handleCookie()
-            //楼层位置处理,
-            const inner = document.querySelectorAll('.floor-item')
-            const innerbox = document.querySelector('.floor-center')
-            // 页面显示5条,当第五条以上,进行marginTop修改
-            // index从0开始
-            // TODO: 需要修改可以修改这里,配置页面样式,修改showNumber和height
-            let showNumber = 5, //页面中展示的楼层条数
-                height = 32, //一个楼层的div标签高度
-                timer = 500 //动画时长
-            // flag 为0时,timer设置为0
-            flag === 0 && (timer = 0)
-            if (index >= showNumber - 1) {
-                animate(innerbox, { marginTop: -height * (index - (showNumber - 2)) }, timer)
-                // index < len - 1 && animate(innerbox, { marginTop: -height * (index - (showNumber - 2)) }, timer)
-            } else {
-                // 前 showNumber 条的margin-top设置为0
-                animate(innerbox, { marginTop: 0 }, 500)
-            }
+            // 楼层位置动画处理
+            this.handlePosition(flag, index, len)
             // 处理上下按钮禁用逻辑
             this.handleUpDownStatus(index, len)
         },
+
         /**
          * @name handleUpDownStatus
          * @param { Number } index 当前楼层在floorIdArr中的下标
@@ -148,6 +177,7 @@ export default {
          * @description cookie数据处理
          */
         handleCookie() {
+            // return true
             let currentFloor = this.floorsArr.filter(item => item.seq == this.currentFloorId)[0]
             this.$cookie.set('floorNow', currentFloor.code, 3)
             this.$cookie.set('floorMapId', currentFloor.gname, 3)
@@ -164,45 +194,34 @@ export default {
         tabFloor(item, index) {
             this.currentFloorId = this.floorIdArr[index]
             this.handleCookie()
+            this.handlePosition(1, index, this.floorIdArr.length)
             this.handleUpDownStatus(index, this.floorIdArr.length)
         },
-        removeTop(num) {
-            //console.log(num)
-            if (num == -1) {
-                this.num = num
-                this.showT = false
-                this.showB = true
-            }
-            var inner = document.querySelectorAll('.floor-item')
-            var innerbox = document.querySelector('.floor-center')
-            if (this.num < 0) {
-                this.num++
-            } else {
-                this.num = 0
-                this.showT = false
-            }
-            if (this.num <= 0) {
-                animate(innerbox, { marginTop: 32 * this.num }, 500, function() {})
-            }
-        },
-        removeBottom(num) {
-            //console.log(num)
-            // let num = 0
-            if (num == -2) {
-                this.num = num
-                this.showB = false
-                this.showT = true
-            }
-            var inner = document.querySelectorAll('.floor-item')
-            var innerbox = document.querySelector('.floor-center')
-            if (this.num > -(inner.length - 4)) {
-                this.num--
+        /**
+         * @description 楼层位置动画处理
+         * @param flag 是否启用动画时长 0:不启用  其他 启动
+         * @param index 楼层 在floorIdArr中的下标
+         * @param len floorIdArr长度
+         */
+        handlePosition(flag, index, len) {
+            //楼层位置处理
+            // 页面显示5条,当第五条以上,进行marginTop修改
+            // index从0开始
+            // TODO: 需要修改可以修改这里,配置页面样式,修改showNumber和height
+            let showNumber = 5, //页面中展示的楼层条数
+                height = 32, //一个楼层的div标签高度
+                timer = 500 //动画时长
+            // flag 为0时,timer设置为0
+            flag === 0 && (timer = 0)
+            if (index >= showNumber - 1) {
+                if (index < len - 1) {
+                    this.marginTop = -height * (index - (showNumber - 2)) + 'px'
+                } else if ((index = len - 1)) {
+                    this.marginTop = -height * (index - (showNumber - 1)) + 'px'
+                }
             } else {
-                this.num = -(inner.length - 4)
-                this.showB = false
-            }
-            if (this.num > -(inner.length - 4)) {
-                animate(innerbox, { marginTop: 32 * this.num }, 500, function() {})
+                // 前 showNumber 条的margin-top设置为0
+                this.marginTop = 0
             }
         }
     }
@@ -216,8 +235,7 @@ export default {
     z-index: 2;
     .floor-list {
         width: 44px;
-        height: 212px;
-        // height: 312px;
+        // height: 212px;
         background: rgba(255, 255, 255, 1);
         box-shadow: 0px 2px 15px 0px rgba(31, 36, 41, 0.08);
         border-radius: 2px;
@@ -226,8 +244,6 @@ export default {
         text-align: center;
         .floor-out {
             height: 160px;
-            // height: 312px;
-            //TODO:
             overflow: hidden;
             // overflow-y: auto;
             position: relative;
@@ -236,8 +252,7 @@ export default {
             // }
 
             .floor-center {
-                // TODO:
-                // margin-top: 0 !important;
+                transition: all linear 0.8s;
                 .floor-item {
                     width: 36px;
                     height: 32px;
@@ -279,5 +294,8 @@ export default {
             line-height: 32px;
         }
     }
+    .disabled {
+        cursor: not-allowed !important;
+    }
 }
 </style>

+ 88 - 76
src/components/floorListOther.vue

@@ -6,14 +6,19 @@
 <template>
     <div class='floor-box'>
         <div class='floor-list'>
-            <!-- <i class='el-icon-caret-top icon-top' v-if='showT' @click='removeTop(num)'></i> -->
             <div v-if='floorsArr.length>5'>
-                <i class='el-icon-caret-top icon-top' v-if='showT' @click='changeFloor(1)'></i>
-                <i class='el-icon-caret-top icon-top' v-else style='color:#ccc'></i>
+                <i
+                    class='el-icon-caret-top icon-top'
+                    :class='{disabled:currentFloorId == floorsArr[0].seq }'
+                    v-if='showT'
+                    @click='changeFloor(1)'
+                    @mousedown='mousedown'
+                    @mouseup='mouseup'
+                ></i>
+                <i class='el-icon-caret-top icon-top' :class='{disabled:currentFloorId == floorsArr[0].seq }' v-else style='color:#ccc'></i>
             </div>
-
             <div class='floor-out'>
-                <div class='floor-center'>
+                <div class='floor-center' :style='{ marginTop : marginTop }'>
                     <div
                         class='floor-item'
                         :class='item.seq == currentFloorId?"isActive":""'
@@ -23,16 +28,24 @@
                     >{{item.code}}</div>
                 </div>
             </div>
-            <!-- <i class='el-icon-caret-bottom icon-bottom' v-if='showB' @click='removeBottom(num)'></i> -->
             <div v-if='floorsArr.length>5'>
-                <i class='el-icon-caret-bottom icon-bottom' v-if='showB' @click='changeFloor(-1)'></i>
-                <i class='el-icon-caret-bottom icon-bottom' v-else style='color:#ccc'></i>
+                <i
+                    class='el-icon-caret-bottom icon-bottom'
+                    :class='{disabled:currentFloorId == floorsArr[floorsArr.length-1].seq }'
+                    v-if='showB'
+                    @click='changeFloor(-1)'
+                ></i>
+                <i
+                    class='el-icon-caret-bottom icon-bottom'
+                    :class='{disabled:currentFloorId == floorsArr[floorsArr.length-1].seq }'
+                    v-else
+                    style='color:#ccc'
+                ></i>
             </div>
         </div>
     </div>
 </template>
 <script>
-import { animate } from '@/utils/animate.js'
 export default {
     data() {
         return {
@@ -48,14 +61,32 @@ export default {
                 name: '第1层',
                 seq: 100
             },
-            currentFloorId: null
+            currentFloorId: null,
+            marginTop: 0,
+            startTime: '',
+            endTime: ''
+        }
+    },
+    props: {
+        floorsArr: {
+            type: Array
+            /*  default: () => {
+                return [
+                    { name: '第6层', code: 'F6', gname: 'f6', gcode: '6F', seq: 600 },
+                    { name: '第5层', code: 'F5', gname: 'f5', gcode: '5F', seq: 500 },
+                    { name: '第4层', code: 'F4', gname: 'f4', gcode: '4F', seq: 400 },
+                    { name: '第3层', code: 'F3', gname: 'f3', gcode: '3F', seq: 300 },
+                    { name: '第2层', code: 'F2', gname: 'f2', gcode: '2F', seq: 200 },
+                    { name: '第1层', code: 'F1', gname: 'f1', gcode: '1F', seq: 100 },
+                    { name: '地下1层', code: 'B1', gname: 'b1', gcode: 'B1', seq: -100 },
+                    { name: '地下2层', code: 'B2', gname: 'b2', gcode: 'B2', seq: -200 },
+                    { name: '地下3层', code: 'B3', gname: 'b3', gcode: 'B3', seq: -300 },
+                    { name: '地下4层', code: 'B4', gname: 'b4', gcode: 'B4', seq: -400 }
+                ]
+            } */
         }
     },
-    props: ['floorsArr'],
     mounted() {
-        //console.log('this.floorsArrthis.floorsArrthis.floorsArrthis.floorsArr', this.floorsArr)
-        // this.removeBottom(-1)
-        // this.tabFloor()
         this.init()
     },
     watch: {
@@ -68,6 +99,16 @@ export default {
         // }
     },
     methods: {
+        mousedown() {
+            this.startTime = new Date()
+            console.log()
+        },
+        mouseup() {
+            this.endTime = new Date()
+            if (this.endTime - this.startTime < 200) {
+                return false
+            }
+        },
         init() {
             if (!this.floorsArr.length) {
                 return false
@@ -76,7 +117,6 @@ export default {
             this.floorsArr.map(item => {
                 this.floorIdArr.push(item.seq)
             })
-            // this.currentFloorId = Number(this.$cookie.get('currentFloorId') || 100)
             this.currentFloorId = this.floorsArr[0].seq
             this.changeFloor(0)
         },
@@ -99,27 +139,12 @@ export default {
             }
             // 数据处理
             this.handleCookie()
-            //楼层位置处理,
-            const inner = document.querySelectorAll('.floor-item')
-            const innerbox = document.querySelector('.floor-center')
-            // 页面显示5条,当第五条以上,进行marginTop修改
-            // index从0开始
-            // TODO: 需要修改可以修改这里,配置页面样式,修改showNumber和height
-            let showNumber = 5, //页面中展示的楼层条数
-                height = 32, //一个楼层的div标签高度
-                timer = 500 //动画时长
-            // flag 为0时,timer设置为0
-            flag === 0 && (timer = 0)
-            if (index >= showNumber - 1) {
-                animate(innerbox, { marginTop: -height * (index - (showNumber - 2)) }, timer)
-                // index < len - 1 && animate(innerbox, { marginTop: -height * (index - (showNumber - 2)) }, timer)
-            } else {
-                // 前 showNumber 条的margin-top设置为0
-                animate(innerbox, { marginTop: 0 }, 500)
-            }
+            // 楼层位置动画处理
+            this.handlePosition(flag, index, len)
             // 处理上下按钮禁用逻辑
             this.handleUpDownStatus(index, len)
         },
+
         /**
          * @name handleUpDownStatus
          * @param { Number } index 当前楼层在floorIdArr中的下标
@@ -152,6 +177,7 @@ export default {
          * @description cookie数据处理
          */
         handleCookie() {
+            // return true
             let currentFloor = this.floorsArr.filter(item => item.seq == this.currentFloorId)[0]
             // this.$cookie.set('floorNow', currentFloor.code, 3)
             // this.$cookie.set('floorMapId', currentFloor.gname, 3)
@@ -168,45 +194,34 @@ export default {
         tabFloor(item, index) {
             this.currentFloorId = this.floorIdArr[index]
             this.handleCookie()
+            this.handlePosition(1, index, this.floorIdArr.length)
             this.handleUpDownStatus(index, this.floorIdArr.length)
         },
-        removeTop(num) {
-            //console.log(num)
-            if (num == -1) {
-                this.num = num
-                this.showT = false
-                this.showB = true
-            }
-            var inner = document.querySelectorAll('.floor-item')
-            var innerbox = document.querySelector('.floor-center')
-            if (this.num < 0) {
-                this.num++
-            } else {
-                this.num = 0
-                this.showT = false
-            }
-            if (this.num <= 0) {
-                animate(innerbox, { marginTop: 32 * this.num }, 500, function() {})
-            }
-        },
-        removeBottom(num) {
-            //console.log(num)
-            // let num = 0
-            if (num == -2) {
-                this.num = num
-                this.showB = false
-                this.showT = true
-            }
-            var inner = document.querySelectorAll('.floor-item')
-            var innerbox = document.querySelector('.floor-center')
-            if (this.num > -(inner.length - 4)) {
-                this.num--
+        /**
+         * @description 楼层位置动画处理
+         * @param flag 是否启用动画时长 0:不启用  其他 启动
+         * @param index 楼层 在floorIdArr中的下标
+         * @param len floorIdArr长度
+         */
+        handlePosition(flag, index, len) {
+            //楼层位置处理
+            // 页面显示5条,当第五条以上,进行marginTop修改
+            // index从0开始
+            // TODO: 需要修改可以修改这里,配置页面样式,修改showNumber和height
+            let showNumber = 5, //页面中展示的楼层条数
+                height = 32, //一个楼层的div标签高度
+                timer = 500 //动画时长
+            // flag 为0时,timer设置为0
+            flag === 0 && (timer = 0)
+            if (index >= showNumber - 1) {
+                if (index < len - 1) {
+                    this.marginTop = -height * (index - (showNumber - 2)) + 'px'
+                } else if ((index = len - 1)) {
+                    this.marginTop = -height * (index - (showNumber - 1)) + 'px'
+                }
             } else {
-                this.num = -(inner.length - 4)
-                this.showB = false
-            }
-            if (this.num > -(inner.length - 4)) {
-                animate(innerbox, { marginTop: 32 * this.num }, 500, function() {})
+                // 前 showNumber 条的margin-top设置为0
+                this.marginTop = 0
             }
         }
     }
@@ -220,8 +235,6 @@ export default {
     z-index: 2;
     .floor-list {
         width: 44px;
-        // height: 212px;
-        // height: 312px;
         background: rgba(255, 255, 255, 1);
         box-shadow: 0px 2px 15px 0px rgba(31, 36, 41, 0.08);
         border-radius: 2px;
@@ -229,9 +242,6 @@ export default {
         padding: 28px 4px;
         text-align: center;
         .floor-out {
-            // height: 160px;
-            // height: 312px;
-            //TODO:
             overflow: hidden;
             // overflow-y: auto;
             position: relative;
@@ -240,8 +250,7 @@ export default {
             // }
 
             .floor-center {
-                // TODO:
-                // margin-top: 0 !important;
+                transition: all linear 0.8s;
                 .floor-item {
                     width: 36px;
                     height: 32px;
@@ -283,5 +292,8 @@ export default {
             line-height: 32px;
         }
     }
+    .disabled {
+        cursor: not-allowed !important;
+    }
 }
 </style>

+ 19 - 18
src/store/index.js

@@ -1,6 +1,6 @@
-import Vue from 'vue'
-import Vuex from 'vuex'
-import { login, queryFloor, queryfmapID } from '@/api/login.js'
+import Vue from "vue"
+import Vuex from "vuex"
+import { login, queryFloor, queryfmapID } from "@/api/login.js"
 Vue.use(Vuex)
 export default new Vuex.Store({
     state: {
@@ -8,15 +8,15 @@ export default new Vuex.Store({
         permissions: [], //权限信息 "GLSMS_VIEW":"说明书查看"、"GLSMS_SYMBOL_MANAGE": "图例库管理"、 "GLSMS_PLANARGRAPH_MANAGE":"平面图维护"
         plazas: [], //项目列表
         userInfo: {
-            employeename: '', //用户名称:艾宇;
-            orgCode: '',
-            username: 'lengqiang', //账户名称
+            employeename: "", //用户名称:艾宇;
+            orgCode: "",
+            username: "lengqiang", //账户名称
         },
-        plazaId: '1000423',
-        projectName: '', //全局项目名称
+        plazaId: "1000423",
+        projectName: "", //全局项目名称
         floorsArr: [], //楼层数组
         floorSelect: [], //楼层下拉框
-        fmapID: '',
+        fmapID: "",
     },
     getters: {
         floorsArr: (state) => state.floorsArr,
@@ -42,8 +42,9 @@ export default new Vuex.Store({
             state.floorsArr = data
             if (data.length > 0) {
                 data.forEach((e) => {
+                    console.log(e)
                     let obj = {
-                        id: e.code,
+                        id: e.gname,
                         name: e.code,
                     }
                     state.floorSelect.push(obj)
@@ -60,19 +61,19 @@ export default new Vuex.Store({
             await login({
                 username: palyload,
             }).then((res) => {
-                if (res.result == 'success') {
-                    commit('SETISREQUESTtAUTH', true)
-                    commit('SETAUTHMSG', res)
+                if (res.result == "success") {
+                    commit("SETISREQUESTtAUTH", true)
+                    commit("SETAUTHMSG", res)
                 } else {
-                    console.log('接口报错!!')
-                    commit('SETISREQUESTtAUTH', false)
+                    console.log("接口报错!!")
+                    commit("SETISREQUESTtAUTH", false)
                 }
             })
         },
         getFloors(context) {
             queryFloor({ plazaId: context.state.plazaId }).then((res) => {
-                if (res.result == 'success') {
-                    context.commit('SETFLOORS', res.data)
+                if (res.result == "success") {
+                    context.commit("SETFLOORS", res.data)
                 }
             })
         },
@@ -80,7 +81,7 @@ export default new Vuex.Store({
             await queryfmapID({
                 mapId: context.state.plazaId,
             }).then((res) => {
-                context.commit('SETMAPID', `${context.state.plazaId}_${res.mapVersion}`)
+                context.commit("SETMAPID", `${context.state.plazaId}_${res.mapVersion}`)
             })
         },
     },

+ 3 - 3
src/utils/plugins/components.js

@@ -462,17 +462,17 @@ var system = [
                         {
                             label: "给水系统专项维修",
                             id: "GSZW1",
-                            param: { tab_code: "1592", diff: "gs" },
+                            param: { tab_code: "1592", difference: "给水" },
                         },
                         {
                             label: "排水系统专项维修",
                             id: "GSZW2",
-                            param: { tab_code: "1593", diff: "ps" },
+                            param: { tab_code: "1593", difference: "排水" },
                         },
                         {
                             label: "其他事项",
                             id: "GSQT",
-                            param: { tab_code: "1594", diff: "" },
+                            param: { tab_code: "1594", difference: "" },
                         },
                     ],
                 },

+ 20 - 6
src/views/equipment/eqDialog.vue

@@ -33,16 +33,13 @@
                 <el-tabs v-model='activeName' @tab-click='handleClick' v-if='Object.keys(dialogInfo).length>0 && dialogInfo.children.length>0'>
                     <el-tab-pane
                         v-for='(value,index) in dialogInfo.children'
+                        v-if='value.id.slice(2,4)!="YL"'
                         :key='"u"+index'
                         :label='`${value.label}`'
                         :name='`${value.param.tab_code}`'
                     >
-                        <!-- 有tab的原理图 -->
-                        <div v-if='value.id.slice(2,4)=="YL"' style='width:100%;height:600px;overflow:hidden'>
-                            <rotation :rotationImg='rotationImg'></rotation>
-                        </div>
                         <!-- 主要设备清单 标准设备表格加tab -->
-                        <tableList v-else-if='value.id.slice(0,4)=="RDQD"' :param='param' ref='list1' major='弱电'></tableList>
+                        <tableList v-if='value.id.slice(0,4)=="RDQD"' :param='param' ref='list1' major='弱电'></tableList>
                         <tableList v-else-if='value.id.slice(0,4)=="NTQD"' :param='param' ref='list2' major='暖通'></tableList>
                         <!-- 维保表格 -->
                         <wb-table v-else-if='value.id.slice(2,4)=="WB"' :smsxt='smsxt' :tabLabel='tabLabel' :diff='diff' :major='dialogInfo.id'></wb-table>
@@ -53,6 +50,23 @@
                         <!-- 其他 -->
                         <other-table v-else-if='value.id.slice(2,4)=="QT"' ref='qtList' :tabLabel='tabLabel' :smsxt='smsxt' :major='dialogInfo.id'></other-table>
                     </el-tab-pane>
+                    <template v-for='(value,index) in dialogInfo.children'>
+                        <template v-for='(eve,index1) in tabCount'>
+                            <template v-if='eve.typecode == value.param.type_code'>
+                                <el-tab-pane
+                                    :key='index1+index'
+                                    :label='`${value.label}`'
+                                    :name='`${value.param.type_code}`'
+                                    v-if='value.id.slice(2,4)=="YL" && eve.count>0'
+                                >
+                                    <!-- 有tab的原理图 -->
+                                    <div style='width:100%;height:600px;overflow:hidden'>
+                                        <rotation :rotationImg='rotationImg'></rotation>
+                                    </div>
+                                </el-tab-pane>
+                            </template>
+                        </template>
+                    </template>
                 </el-tabs>
             </div>
         </el-dialog>
@@ -206,7 +220,7 @@ export default {
             queryTab({ data, postParams }).then(res => {
                 this.tabCount = []
                 console.log('res', res)
-                let data = res.data || []
+                let data = res.data.data || []
                 data.forEach(el => {
                     this.tabCount.push({
                         count: el.count,

+ 13 - 2
src/views/equipment/index.vue

@@ -99,7 +99,7 @@ export default {
         },
         emitFloor(item) {
             this.floorInfo = item
-            // this.$refs.floorMap.init(this.floorInfo.gname)
+            this.$refs.floorMap.init(this.floorInfo.gname)
             this.init()
         },
         dialogVisible(eve) {
@@ -133,9 +133,20 @@ export default {
         }
     },
     mounted() {
+        console.log('smsxtsmsxtsmsxt', this.$route.query.smsxt)
+        if (this.$route.query.smsxt) {
+            this.smsxt = this.$route.query.smsxt
+            this.system.forEach(el => {
+                if (el.smsxt == this.smsxt) {
+                    this.everySystem = el.children
+                    this.systemName = el.name
+                    this.systemId = el.id
+                }
+            })
+        }
         this.everySystem = this.system[0].children
         this.init()
-        // this.$refs.floorMap.init(this.floorInfo.gname)
+        this.$refs.floorMap.init(this.floorInfo.gname)
     },
     computed: {
         ...mapGetters(['floorsArr'])

+ 11 - 13
src/views/equipment/table/eqDetaileDialog.vue

@@ -56,7 +56,7 @@
                 <template slot-scope='{row}'>{{row.assetnum || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' width='100'>
-                <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='sbglgs' label='管理归属' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.sbglgs || '--'}}</template>
@@ -71,7 +71,7 @@
                 <template slot-scope='{row}'>{{row.sbxh || '--'}}</template>
             </el-table-column>
             <el-table-column prop='floor' sortable label='楼层' width='100'>
-                <template slot-scope='{row}'>{{row.floor || '--'}}</template>
+                <template slot-scope='{row}'>{{row.floorcode || '--'}}</template>
             </el-table-column>
             <el-table-column prop='wzjc' label='安装位置' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.wzjc || '--'}}</template>
@@ -242,15 +242,15 @@ export default {
                 delete data.keyword
             }
             let postParams = {
-                type_code: this.row.type_code
-                // manufacturer: this.row.manufacturer,
-                // sbxh: this.row.sbxh,
-                // // floor: '--',
-                // brand: '--'
+                classstructureid: this.row.classstructureid,
+                type_code: this.row.type_code,
+                manufacturer: this.row.manufacturer || '--',
+                sbxh: this.row.sbxh || '--',
+                brand: this.row.brand || '--'
             }
             //下拉筛选
             if (this.floor) {
-                postParams.floor = this.floor
+                postParams.gname = this.floor
             }
             if (this.sbglgs) {
                 postParams.sbglgs = this.sbglgs
@@ -266,12 +266,10 @@ export default {
         }
     },
     watch: {
-        'row.type_code': {
+        row: {
             handler(newV, oldV) {
-                if (newV != oldV) {
-                    this.queryTableList()
-                    this.tabFind()
-                }
+                this.queryTableList()
+                this.tabFind()
             },
             deep: true
         }

+ 3 - 3
src/views/equipment/table/eqListTable.vue

@@ -37,7 +37,7 @@
                 <template slot-scope='{row}'>{{row.type_name || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' width='100'>
-                <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='brand' label='品牌'>
                 <template slot-scope='{row}'>{{row.brand || '--'}}</template>
@@ -46,7 +46,7 @@
                 <template slot-scope='{row}'>{{row.sbxh || '--'}}</template>
             </el-table-column>
             <el-table-column prop='floorcode' label='楼层' width='100'>
-                <template slot-scope='{row}'>{{row.floor || '--'}}</template>
+                <template slot-scope='{row}'>{{row.floorcode || '--'}}</template>
             </el-table-column>
             <el-table-column prop='wzjc' label='安装位置' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.wzjc || '--'}}</template>
@@ -127,7 +127,7 @@ export default {
             //下拉
             if (this.floor) {
                 console.log(this.floor)
-                postParams.floor = this.floor
+                postParams.gname = this.floor
             }
             console.log(this.floor)
             //输入框搜索

+ 1 - 1
src/views/equipment/table/otherTable.vue

@@ -50,7 +50,7 @@
                     <template slot-scope='{row}'>{{row.content || '--'}}</template>
                 </el-table-column>
                 <el-table-column prop='sl' label='数量'>
-                    <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                    <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
                 </el-table-column>
             </el-table-column>
             <el-table-column prop='zfje' label='金额(万元)'>

+ 4 - 4
src/views/equipment/table/standTable.vue

@@ -38,7 +38,7 @@
             </el-table-column>
             <!-- sbjc -->
             <el-table-column prop='sl' label='数量' width='100'>
-                <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='brand' label='品牌'>
                 <template slot-scope='{row}'>{{row.brand || '--'}}</template>
@@ -47,7 +47,7 @@
                 <template slot-scope='{row}'>{{row.sbxh || '--'}}</template>
             </el-table-column>
             <el-table-column prop='floor' label='楼层' width='100'>
-                <template slot-scope='{row}'>{{row.floor || '--'}}</template>
+                <template slot-scope='{row}'>{{row.floorcode || '--'}}</template>
             </el-table-column>
             <el-table-column prop='manufacturer' label='生产厂商' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.manufacturer || '--'}}</template>
@@ -99,7 +99,7 @@ export default {
     },
     methods: {
         rowHandle(row) {
-            //console.log(row)
+            console.log(row)
             this.innerVisible = true
             this.row = row
         },
@@ -132,7 +132,7 @@ export default {
             }
             //下拉
             if (this.floor) {
-                data.floor = this.floor
+                data.gname = this.floor
             }
             //输入框搜索
             data.keyword = ''

+ 1 - 1
src/views/equipment/table/tjTable.vue

@@ -19,7 +19,7 @@
                 <template slot-scope='{row}'>{{row.category || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' width='100'>
-                <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='brand' label='品牌'>
                 <template slot-scope='{row}'>{{row.brand || '--'}}</template>

+ 1 - 1
src/views/equipment/table/wbTable.vue

@@ -84,7 +84,7 @@
                     <template slot-scope='{row}'>{{row.model || '--'}}</template>
                 </el-table-column>
                 <el-table-column prop='sl' label='数量'>
-                    <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                    <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
                 </el-table-column>
                 <el-table-column prop='cost' label='费用(万元)'>
                     <template slot-scope='{row}'>{{row.cost || '--'}}</template>

+ 1 - 1
src/views/equipment/table/wxTable.vue

@@ -92,7 +92,7 @@
                     <template slot-scope='{row}'>{{row.model || '--'}}</template>
                 </el-table-column>
                 <el-table-column prop='sl' label='数量'>
-                    <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                    <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
                 </el-table-column>
                 <el-table-column prop='cost' label='费用(万元)'>
                     <template slot-scope='{row}'>{{number_format(row.cost,2) || '--'}}</template>

+ 1 - 1
src/views/equipment/table/zwTable.vue

@@ -75,7 +75,7 @@
                 <template slot-scope='{row}'>{{row.xm || '--'}}</template>
             </el-table-column>
             <el-table-column prop='sl' label='数量' show-overflow-tooltip resizable>
-                <template slot-scope='{row}'>{{row.sl || '--'}}</template>
+                <template slot-scope='{row}'>{{row.sl>=0?row.sl:'--'}}</template>
             </el-table-column>
             <el-table-column prop='ssfasm' label='实施方案说明' show-overflow-tooltip resizable>
                 <template slot-scope='{row}'>{{row.ssfasm || '--'}}</template>

+ 3 - 2
src/views/index.vue

@@ -44,16 +44,17 @@ export default {
         /**
          * @name handleRoute
          * @param newRoute 当前路由
-         * @description 路由处理函数, 当前路由为home下的legendLibrary(图例)时,隐藏 menuList组件
+         * @description 路由处理函数, 当前路由为home下的legendLibrary和legendRules(图例)时,隐藏 menuList组件
          */
         handleRoute(newRoute) {
             let path = ''
+            let ignoreRoute = ['legendRules', 'legendLibrary']
             newRoute.path && (path = newRoute.path)
             if (!path) {
                 return true
             }
             let lastPath = path.split('home/')[1]
-            if (lastPath === 'legendLibrary') {
+            if (ignoreRoute.includes(lastPath)) {
                 this.showMenu = false
             } else {
                 this.showMenu = true

+ 11 - 0
src/views/room/detail.vue

@@ -203,6 +203,17 @@ export default {
             this.query()
         }
     },
+    watch: {
+        type_code: {
+            deep: true,
+            handler: function(newV, oldV) {
+                if (newV != oldV) {
+                    this.queryDetail()
+                    this.query()
+                }
+            }
+        }
+    },
     methods: {
         show() {
             this.dialogFormVisible = !this.dialogFormVisible

+ 13 - 10
src/views/room/index.vue

@@ -504,15 +504,15 @@ export default {
     },
     methods: {
         handleClick(tab) {
-            if (tab.index == '0') {
+            if (tab.label == '机房布置图') {
                 this.Index()
-            } else if (tab.index == '1') {
+            } else if (tab.label == '配电室低压柜及出线明细表') {
                 this.Index1()
-            } else if (tab.index == '2') {
+            } else if (tab.label == '机房内核心设备') {
                 this.Index2()
-            } else if (tab.index == '3') {
+            } else if (tab.label == '维修记录') {
                 this.Index3()
-            } else if (tab.index == '4') {
+            } else if (tab.label == '维保记录') {
                 this.Index4()
                 this.changeSelect()
             }
@@ -614,7 +614,7 @@ export default {
                 }
             }
             if (this.floorChange) {
-                data.floor = this.floorChange
+                data.gname = this.floorChange
             }
             queryHxsb({ data, postParams }).then(res => {
                 // console.log('核心设备', res)
@@ -818,6 +818,7 @@ export default {
             }
             querySystem(params).then(res => {
                 this.smsxtArr = res.data[0]
+                console.log(this.smsxtArr)
                 this.content = `查看${this.$cookie.get('floorNow')}层${this.smsxtArr.smsxtname}分布图`
             })
         },
@@ -834,10 +835,12 @@ export default {
         },
         // 机房右上角的跳转 如果是在楼层功能打开的机房则要跳转到设备设施对应的系统\楼层 反之亦然
         jumpFloor() {
-            if (location.pathname.split('/')[3] == 'equipment') {
-                this.$router.push({ path: '/home/floorFunc' })
-            } else {
-                this.$router.push({ path: '/home/equipment' })
+            if (this.smsxtArr.smsxt) {
+                if (location.pathname.split('/')[3] == 'equipment') {
+                    this.$router.push({ path: '/home/floorFunc' })
+                } else {
+                    this.$router.push({ path: '/home/equipment', query: { smsxt: this.smsxtArr.smsxt } })
+                }
             }
         }
     },

+ 2 - 2
src/views/room/room3.vue

@@ -11,7 +11,7 @@
             >
                 <el-table-column type='index' label='序号' width='50'></el-table-column>
                 <el-table-column prop :show-overflow-tooltip='true' label='设备简称' resizable>
-                    <template slot-scope='{row}'>{{row.sbjc||'--'}}</template>
+                    <template slot-scope='{row}'>{{row.classqc||'--'}}</template>
                 </el-table-column>
                 <el-table-column prop label='数量' :show-overflow-tooltip='true'>
                     <template slot-scope='{row}'>{{row.sl||'--'}}</template>
@@ -23,7 +23,7 @@
                     <template slot-scope='{row}'>{{row.sbxh||'--'}}</template>
                 </el-table-column>
                 <el-table-column prop label='楼层' :show-overflow-tooltip='true'>
-                    <template slot-scope='{row}'>{{row.floor||'--'}}</template>
+                    <template slot-scope='{row}'>{{row.floorcode||'--'}}</template>
                 </el-table-column>
                 <el-table-column prop :show-overflow-tooltip='true' label='生产厂商'>
                     <template slot-scope='{row}'>{{row.manufacturer||'--'}}</template>

+ 5 - 1
vue.config.js

@@ -1,6 +1,8 @@
 module.exports = {
     devServer: {
+        port: 8090,
         proxy: {
+            // 工程信息化服务
             '/data': {
                 target: 'http://192.168.200.87:9003',
                 changeOrigin: true,
@@ -9,6 +11,7 @@ module.exports = {
                     '^/data': '',
                 },
             },
+            // 万达蜂鸟服务
             '/wdfn': {
                 target: 'http://map.wanda.cn',
                 changeOrigin: true,
@@ -16,6 +19,7 @@ module.exports = {
                     '^/wdfn': '/editor',
                 },
             },
+            // 图例库服务
             '/serve': {
                 target: 'http://192.168.200.87:8088',
                 // target: 'http://192.168.200.83:8085',
@@ -55,4 +59,4 @@ module.exports = {
     outputDir: 'wandaBmGuide',
     // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
     assetsDir: 'static',
-}
+}