Browse Source

'楼层功能适配'

zhangyu 4 years ago
parent
commit
52c2781a01
7 changed files with 177 additions and 24 deletions
  1. 2 1
      src/App.vue
  2. 6 0
      src/api/public.js
  3. 1 1
      src/components/Navbar.vue
  4. 11 0
      src/router/index.ts
  5. 6 0
      src/store/index.ts
  6. 107 22
      src/views/FloorFunc.vue
  7. 44 0
      src/views/GlobalSearch.vue

+ 2 - 1
src/App.vue

@@ -113,7 +113,7 @@ export default {
     },
     methods: {
         ...mapActions(['getfmapID', 'getFloors']),
-        ...mapMutations(['SETHAVEFENGMAP', 'SETCATEGORYID']),
+        ...mapMutations(['SETHAVEFENGMAP', 'SETCATEGORYID', 'SETSMSXT']),
         getFengMap() {
             this.getfmapID().then(() => {
                 this.getMap()
@@ -156,6 +156,7 @@ export default {
             // console.log(active)
             if (active == 1) {
                 this.SETCATEGORYID('LCGN')
+                this.SETSMSXT("")
             }
             this.$router.push({ name: this.routeDict[active] })
             store.commit('SETAPPTITLE', this.titleDict[active])

+ 6 - 0
src/api/public.js

@@ -25,6 +25,12 @@ export function graphQuery(params) {
 export function appGraphElementQuery(params) {
     return httputils.postJson(`/serve/topology-wanda/graphElement/statistic/appQuery`, params)
 }
+
+// app查询图例统计信息
+export function appNodeQuery(params) {
+    return httputils.postJson(`/serve/topology-wanda/node/appQuery`, params)
+}
+
 // 查询图片
 export function queryPic({ getParams }) {
     return httputils.getJson(`/data/sms_proimgup/query`, getParams)

+ 1 - 1
src/components/Navbar.vue

@@ -64,7 +64,7 @@ export default {
         },
         // 全局搜索
         query() {
-            console.log('全局搜索')
+            this.$router.push({ name: 'GlobalSearch' })
         },
     },
 }

+ 11 - 0
src/router/index.ts

@@ -129,6 +129,17 @@ const routes: Array<RouteConfig> = [
             hideNarBar: true,
         },
     },
+    // 全局搜索
+    {
+        path: '/globalSearch',
+        name: 'GlobalSearch',
+        component: () => import(/* webpackChunkName: "globalSearch" */ '../views/GlobalSearch.vue'),
+        meta: {
+            keepAlive: false,
+            showTabbar: false,
+            hideNarBar: true,
+        },
+    },
 ]
 
 const router = new VueRouter({

+ 6 - 0
src/store/index.ts

@@ -17,6 +17,7 @@ export default new Vuex.Store({
         bunkObj: {}, // 铺位名称
         floorsArr: [], //楼层数组
         categoryId: "", //系统类型
+        smsxt: "", //设备设施系统编码
         // 事件类型字典
         objtypeDict: {
             1: '重要维保',
@@ -36,6 +37,7 @@ export default new Vuex.Store({
         objtypeDict: (state) => state.objtypeDict,
         floorsArr: (state) => state.floorsArr,
         categoryId: (state) => state.categoryId,
+        smsxt: (state) => state.smsxt,
     },
     mutations: {
         SETSSOTOKEN(state, data) {
@@ -67,6 +69,10 @@ export default new Vuex.Store({
         SETCATEGORYID(state, data) {
             state.categoryId = data
         },
+        // 设置设备设施系统编码
+        SETSMSXT(state, data) {
+            state.smsxt = data
+        },
     },
     actions: {
         async getfmapID(context) {

+ 107 - 22
src/views/FloorFunc.vue

@@ -8,18 +8,32 @@
           <van-icon class='floor-item-arrow' name='arrow' />
         </p>
       </div>
-      <div v-if="floor.Statistics.length" class="floor-item-table">
+      <div v-if="floor.Statistics && floor.Statistics.length" class="floor-item-table">
         <table class="table-box">
           <tr>
-            <th><div class="cell">项目</div></th>
-            <th><div class="cell">数量</div></th>
-            <th><div class="cell">单位</div></th>
-            <th><div class="cell">图例</div></th>
+            <th>
+              <div class="cell">项目</div>
+            </th>
+            <th>
+              <div class="cell">数量</div>
+            </th>
+            <th>
+              <div class="cell">单位</div>
+            </th>
+            <th>
+              <div class="cell">图例</div>
+            </th>
           </tr>
           <tr v-for="tr in floor.Statistics" :key="`${floor.FloorId}-${tr.OrderId}`" v-show="tr.Num">
-            <td><div class="cell">{{tr.Name||'--'}}</div></td>
-            <td><div class="cell">{{tr.Num}}</div></td>
-            <td><div class="cell">{{tr.Unit||'--'}}</div></td>
+            <td>
+              <div class="cell">{{tr.Name||'--'}}</div>
+            </td>
+            <td>
+              <div class="cell">{{tr.Num}}</div>
+            </td>
+            <td>
+              <div class="cell">{{tr.Unit||'--'}}</div>
+            </td>
             <td>
               <div class="cell">
                 <div v-if='tr.Url' class="Url-img">
@@ -40,32 +54,62 @@
             </td>
           </tr>
         </table>
-        <h2 class="floor-additional-data" v-if="$route.query.categoryId == 'XFXT' || $route.query.categoryId == 'RDXT'">
-          <i class="iconfont wanda-otherData"></i> 
+        <h2 class="floor-additional-data" v-if="smsxt == '1003' || smsxt == '1004'" @click="queryTable(floor.FloorId)">
+          <i class="iconfont wanda-otherData"></i>
           查看附加数据
         </h2>
       </div>
+      <div v-else-if="floor.Properties && floor.Properties.length" class="floor-item-table">
+        <table class="table-box">
+          <tr>
+            <th>
+              <div class="cell">说明</div>
+            </th>
+            <th>
+              <div class="cell">图例</div>
+            </th>
+          </tr>
+          <tr v-for="tr in floor.Properties" :key="`${floor.FloorId}-${tr.OrderId}`">
+            <td>
+              <div class="cell">{{tr.ItemExplain||'--'}}</div>
+            </td>
+            <td>
+              <div class="cell">
+                <div v-if='tr.FillColor && tr.StrokeColor' class="Url-img"
+                  :style='`background:${tr.FillColor};border:1px solid ${tr.StrokeColor}`'>
+                </div>
+                <div v-else>{{'--'}}</div>
+              </div>
+            </td>
+          </tr>
+        </table>
+      </div>
     </div>
+    <ImagePreview :key='imgKey' :visible.sync='showImgPreview' :imgList='imgList' />
   </div>
 </template>
 <script>
 import Vue from 'vue';
 import { Toast } from 'vant';
 Vue.use(Toast);
-import { appGraphElementQuery } from '@/api/public'
+import ImagePreview from '@/components/ImagePreview'
+import { appGraphElementQuery, appNodeQuery, queryPic } from '@/api/public'
 import { mapGetters } from 'vuex'
 export default {
   name: 'FloorFunc',
   props: {},
   data() {
     return {
-      floorData: []
+      floorData: [],
+      showImgPreview: false,
+      imgList: [], //图片列表
+      imgKey: `img${new Date().getTime()}`,
     }
   },
   computed: {
-    ...mapGetters(['plazaId', 'floorsArr', 'categoryId']),
+    ...mapGetters(['plazaId', 'floorsArr', 'categoryId', 'smsxt']),
   },
-  components: {},
+  components: { ImagePreview },
   beforeMount() { },
   created() {
     this.getGraphElement();
@@ -84,8 +128,42 @@ export default {
           }
         })
       }
-      appGraphElementQuery(params).then(res => {
-        this.floorData = res.Data;
+      if (this.categoryId === "SCPZ") {
+        appNodeQuery(params).then(res => {
+          this.floorData = res.Data.map(floor => {
+            let arr = []
+            if (floor.Properties && floor.Properties.length) {
+              arr = floor.Properties.filter(item => {
+                return item.ItemExplain && item.ItemExplain !== "";
+              })
+              floor.Properties = arr;
+            }
+            return floor;
+          });
+        })
+      } else {
+        appGraphElementQuery(params).then(res => {
+          this.floorData = res.Data;
+        })
+      }
+    },
+    // 查询附加数据图片
+    queryTable(floorId) {
+      let getParams = {
+        module: '1003',
+        floor: floorId,
+        system: this.smsxt,
+        plazaId: this.plazaId,
+      }
+      queryPic({ getParams }).then((res) => {
+        if (res.data && res.data) {
+          this.imgList = res.data.map(item => {
+            return item.url
+          })
+          this.showImgPreview = true;
+        } else {
+          Toast.fail('暂无附加数据!');
+        }
       })
     },
     goToMapView(floor) {
@@ -94,16 +172,22 @@ export default {
           FloorId: floor.FloorId,
           FloorName: floor.FloorName
         }
-        this.$router.push({ name: 'MapView', params: {floor: floorObj} })
+        this.$router.push({ name: 'MapView', params: { floor: floorObj } })
       } else {
         Toast.fail('缺少楼层信息!');
       }
     },
   },
+  watch: {
+    categoryId: {
+      handler() {
+        this.getGraphElement();
+      }
+    }
+  }
 }
 </script>
 <style lang='less' scoped>
-
 .floor-function {
   width: 100%;
   height: calc(100% - 100px);
@@ -139,7 +223,8 @@ export default {
         table-layout: fixed;
         border-collapse: collapse;
         border-spacing: 0;
-        td, th {
+        td,
+        th {
           font-size: 12px;
           font-weight: 500;
           color: #333333;
@@ -148,7 +233,7 @@ export default {
           text-overflow: ellipsis;
           white-space: nowrap;
           min-width: 0;
-          border: 1px solid #E4E6E7;
+          border: 1px solid #e4e6e7;
           box-sizing: border-box;
           vertical-align: middle;
           position: relative;
@@ -164,7 +249,7 @@ export default {
           }
         }
         th {
-          background: #EFF0F1;
+          background: #eff0f1;
         }
         .Url-img {
           width: 20px;
@@ -195,7 +280,7 @@ export default {
     }
     .floor-additional-data {
       font-size: 14px;
-      color: #025BAA;
+      color: #025baa;
       margin-top: 10px;
       i {
         vertical-align: bottom;

+ 44 - 0
src/views/GlobalSearch.vue

@@ -0,0 +1,44 @@
+<template>
+  <div>
+    <van-search v-model="value" show-action shape="round" placeholder="请输入搜索内容" @search="onSearch" @cancel="onCancel" />
+  </div>
+</template>
+<script>
+import Vue from 'vue'
+import { mapGetters } from 'vuex'
+import { Search } from 'vant'
+Vue.use(Search)
+export default {
+  name: 'GlobalSearch',
+  props: {},
+  components: {},
+  computed: {
+    ...mapGetters(['plazaId']),
+  },
+  data() {
+    return {
+      value: ""
+    }
+  },
+  props: {},
+  beforeMount() { },
+  mounted() {
+
+  },
+  methods: {
+    // 全局搜索事件
+    onSearch() {
+
+    },
+    // 取消搜索
+    onCancel() {
+      this.$router.go(-1)
+    }
+  },
+  watch: {
+
+  },
+}
+</script>
+<style lang='less' scoped>
+</style>