|
@@ -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: {
|