Procházet zdrojové kódy

Merge branch 'dev' of http://39.106.8.246:3003/yunxing/wanda-bm-guide-h5 into dev

yunxing před 4 roky
rodič
revize
681193af75

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 65 - 18
src/components/assetDetail/Repair.vue


+ 2 - 2
src/store/index.ts

@@ -12,8 +12,8 @@ export default new Vuex.Store({
         ssoToken: 'admin:liujiandong',
         appTitle: '管理说明书', //顶部标题
         // ssoToken: null,
-        plazaId: '1000772', //项目Id 北京通州
-        // plazaId: '1000423', //项目Id 大连高新
+        // plazaId: '1000772', //项目Id 北京通州
+        plazaId: '1000423', //项目Id 大连高新
         fmapID: '',
         haveFengMap: -1, //是否有蜂鸟地图的数据 -1为等待 0 为失败 1 为成功
         isMessage: true, //是否有发布的图

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 178 - 43
src/views/AssetDetail.vue


+ 49 - 29
src/views/GlobalSearch.vue

@@ -5,9 +5,9 @@
     <div class="quick-entry">
       <p class="title-style">快捷入口</p>
       <div class="quick-entry-list">
-        <p class="quick-entry-item">机房平面布置图</p>
+        <p @click="handleClickEngineRoomPicture" class="quick-entry-item">机房平面布置图</p>
         <p class="quick-entry-item">配电室低压出线柜及出线明细</p>
-        <p class="quick-entry-item">电井(间)控制商铺范围</p>
+        <p @click="handleClickElectricWell" class="quick-entry-item">电井(间)控制商铺范围</p>
         <p class="quick-entry-item">更多设备</p>
       </div>
     </div>
@@ -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>
@@ -59,6 +59,22 @@ export default {
 
   },
   methods: {
+    // 跳转机房平面布置图
+    handleClickEngineRoomPicture() {
+      this.$router.push({ name: 'EngineRoomPicture', params: {type: "all"} })
+    },
+    // 跳转电井间控制商铺范围
+    handleClickElectricWell() {
+      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() {
       this.page = 1;
@@ -68,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() {
@@ -99,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: {