Browse Source

'全局搜索跳转设备详情'

zhangyu 4 years ago
parent
commit
7b43e429eb
1 changed files with 41 additions and 29 deletions
  1. 41 29
      src/views/GlobalSearch.vue

+ 41 - 29
src/views/GlobalSearch.vue

@@ -16,7 +16,7 @@
       <p class="title-style equip-box-title">设备</p>
       <div class="equip-box-list">
         <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoad">
-          <van-cell v-for="(item, index) in equipList" :key="index" :title="item.sbjc" />
+          <van-cell v-for="(item, index) in equipList" :key="index" @click="handleClickDetail(item)" :title="item.sbjc" />
         </van-list>
       </div>
     </div>
@@ -61,11 +61,19 @@ export default {
   methods: {
     // 跳转机房平面布置图
     handleClickEngineRoomPicture() {
-      this.$router.push({ name: 'EngineRoomPicture', params: {} })
+      this.$router.push({ name: 'EngineRoomPicture', params: {type: "all"} })
     },
     // 跳转电井间控制商铺范围
     handleClickElectricWell() {
-      this.$router.push({ name: 'ElectricWell', params: {} })
+      this.$router.push({ name: 'ElectricWell', params: { type: "all"} })
+    },
+    // 跳转设备详情
+    handleClickDetail(item) {
+      if (item.assetid) {
+        this.$router.push({ path: '/assetDetail', query: { assetid: item.assetid} })
+      } else {
+        console.error("缺少assetid!")
+      }
     },
     // 全局搜索事件
     onSearch() {
@@ -76,20 +84,22 @@ export default {
         plazaId: this.plazaId,
         page: this.page,
         size: this.size,
-        keyword: `${this.keyWord}:sbjc,assetnum;`
       },
-      postParams = { }
-      queryEquipmentList({data, postParams}).then(res => {
-        console.log(res)
-        this.flag = false;
-        if (res.data.result == "success" && res.data.data) {
-          this.equipList = res.data.data;
-        }
-        // 数据全部加载完成
-        if (this.equipList.length >= res.data.count) {
-          this.finished = true;
-        }
-      })
+        postParams = {}
+      if (this.keyWord) {
+        data.keyword = `${this.keyWord}:sbjc,assetnum;`;
+        queryEquipmentList({ data, postParams }).then(res => {
+          console.log(res)
+          this.flag = false;
+          if (res.data.result == "success" && res.data.data) {
+            this.equipList = res.data.data;
+          }
+          // 数据全部加载完成
+          if (this.equipList.length >= res.data.count) {
+            this.finished = true;
+          }
+        })
+      }
     },
     // 修改输入内容
     onInput() {
@@ -107,22 +117,24 @@ export default {
         plazaId: this.plazaId,
         page: this.page,
         size: this.size,
-        keyword: `${this.keyWord}:sbjc,assetnum;`
       },
-      postParams = { }
-      queryEquipmentList({data, postParams}).then(res => {
-        if (res.data.result == "success" && res.data.data) {
-          this.equipList = this.equipList.concat(res.data.data);
-        }
+        postParams = {}
+      if (this.keyWord) {
+        data.keyword = `${this.keyWord}:sbjc,assetnum;`;
+        queryEquipmentList({ data, postParams }).then(res => {
+          if (res.data.result == "success" && res.data.data) {
+            this.equipList = this.equipList.concat(res.data.data);
+          }
 
-        // 加载状态结束
-        this.loading = false;
+          // 加载状态结束
+          this.loading = false;
 
-        // 数据全部加载完成
-        if (this.equipList.length >= res.data.count) {
-          this.finished = true;
-        }
-      })
+          // 数据全部加载完成
+          if (this.equipList.length >= res.data.count) {
+            this.finished = true;
+          }
+        })
+      }
     },
   },
   watch: {