|
@@ -2,13 +2,16 @@
|
|
|
|
|
|
<template>
|
|
|
<div class='equipment-page'>
|
|
|
+ <!-- 顶部条 -->
|
|
|
<van-nav-bar :title='title' left-arrow @click-left='backPage' @click-right='handleRightClick'>
|
|
|
<template #right>
|
|
|
<i class='iconfont wanda-scan'></i>
|
|
|
</template>
|
|
|
</van-nav-bar>
|
|
|
+ <!-- 搜索框 -->
|
|
|
<div class='equipment-search-container'>
|
|
|
- <van-search class='equipment-search' v-model='keyword' placeholder='请输入设备关键字或编号' @search='onSearch'>
|
|
|
+ <van-search class='equipment-search' v-model='keyword' placeholder='请输入设备简称和设备内编码' @search='onSearch'>
|
|
|
+ <!-- TODO: 空状态 自定义图标 -->
|
|
|
<!-- <template #action>
|
|
|
<div class='search' @click='onSearch'>搜索</div>
|
|
|
</template>-->
|
|
@@ -33,13 +36,34 @@
|
|
|
</van-list>
|
|
|
</div>
|
|
|
<!-- 无数据 -->
|
|
|
- <van-empty v-if='finished &&!list.length' description='暂无数据' />
|
|
|
+ <van-empty class='m-empty' v-if='finished &&!list.length' description='暂无数据'>
|
|
|
+ <!-- <template #image>
|
|
|
+ <img src="../../assets/images/xxx.png" alt="">
|
|
|
+ </template>-->
|
|
|
+ </van-empty>
|
|
|
<!-- 点击头部筛选,出现的右侧弹窗 -->
|
|
|
- <van-popup class='m-popup' v-model='showPopup' position='right'>
|
|
|
- <div class='m-popup-page'>
|
|
|
+ <van-popup class='m-popup-container' v-model='showPopup' position='right'>
|
|
|
+ <div class='m-popup'>
|
|
|
+ <!-- 系统 -->
|
|
|
<div class='system'>
|
|
|
- <h1>专业系统</h1>
|
|
|
- <div class='system'></div>
|
|
|
+ <h1 class='title'>专业系统</h1>
|
|
|
+ <div class='system-btn-container'>
|
|
|
+ <div class='system-btn' v-for='(item,index) in systemList' :key='index'>
|
|
|
+ <van-button class='m-btn' :class='item.active' @click='changeSystem(item)'>{{item.text}}</van-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class='divider'></div>
|
|
|
+ <!-- 设备设施 -->
|
|
|
+ <div class='sbss'>
|
|
|
+ <h1 class='title'>
|
|
|
+ 设备设施
|
|
|
+ <div v-for='i in 100' :key='i'>{{i}}</div>
|
|
|
+ </h1>
|
|
|
+ </div>
|
|
|
+ <div class='footer'>
|
|
|
+ <van-button size='large' color='#025BAA' plain type='info'>重置</van-button>
|
|
|
+ <van-button size='large' color='#025BAA' type='info'>确定</van-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</van-popup>
|
|
@@ -52,8 +76,8 @@
|
|
|
*
|
|
|
*/
|
|
|
import Vue from 'vue'
|
|
|
-import { NavBar, Search, List, Cell, Icon, Popup, Empty } from 'vant'
|
|
|
-Vue.use(NavBar).use(Search).use(List).use(Cell).use(Icon).use(Popup).use(Empty)
|
|
|
+import { NavBar, Search, List, Cell, Icon, Popup, Button, Empty } from 'vant'
|
|
|
+Vue.use(NavBar).use(Search).use(List).use(Cell).use(Icon).use(Popup).use(Button).use(Empty)
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
|
import { queryEquipmentList } from '@/api/equipmentList'
|
|
@@ -71,13 +95,17 @@ export default {
|
|
|
loading: false,
|
|
|
finished: false,
|
|
|
category_code: '',
|
|
|
- showPopup: false,
|
|
|
+ showPopup: true,
|
|
|
systemList: [
|
|
|
- { text: '全部', smsxt: '', active: true },
|
|
|
- { text: '供电系统', smsxt: '', active: false },
|
|
|
- { text: '全部', smsxt: '' },
|
|
|
- { text: '全部', smsxt: '' },
|
|
|
- { text: '全部', smsxt: '' },
|
|
|
+ { text: '全部', smsxt: '', active: 'active' },
|
|
|
+ { text: '供电系统', smsxt: '', active: '' },
|
|
|
+ { text: '暖通系统', smsxt: '', active: '' },
|
|
|
+ { text: '消防系统', smsxt: '', active: '' },
|
|
|
+ { text: '弱电系统', smsxt: '', active: '' },
|
|
|
+ { text: '给排水系统', smsxt: '', active: '' },
|
|
|
+ { text: '电梯系统', smsxt: '', active: '' },
|
|
|
+ { text: '燃气系统', smsxt: '', active: '' },
|
|
|
+ { text: '土建系统', smsxt: '', active: '' },
|
|
|
],
|
|
|
}
|
|
|
},
|
|
@@ -146,33 +174,30 @@ export default {
|
|
|
if (this.list.length >= this.count) {
|
|
|
this.finished = true
|
|
|
}
|
|
|
- // 异步更新数据
|
|
|
- // setTimeout 仅做示例,真实场景中一般为 ajax 请求
|
|
|
- /* setTimeout(() => {
|
|
|
- for (let i = 0; i < 10; i++) {
|
|
|
- this.list.push(this.list.length + 1)
|
|
|
- }
|
|
|
-
|
|
|
- // 加载状态结束
|
|
|
- this.loading = false
|
|
|
-
|
|
|
- // 数据全部加载完成
|
|
|
- if (this.list.length >= 40) {
|
|
|
- this.finished = true
|
|
|
- }
|
|
|
- }, 1000) */
|
|
|
},
|
|
|
/**
|
|
|
* 搜索
|
|
|
*/
|
|
|
onSearch() {
|
|
|
-
|
|
|
+ // 初实话数据,查询列表
|
|
|
this.finished = false
|
|
|
this.page = 1
|
|
|
this.count = 0
|
|
|
this.list = []
|
|
|
this.onLoad()
|
|
|
},
|
|
|
+ /**
|
|
|
+ * popup 更改系统
|
|
|
+ */
|
|
|
+ changeSystem(data) {
|
|
|
+ let systemList = this.systemList
|
|
|
+ systemList.map((item) => {
|
|
|
+ item.active = ''
|
|
|
+ if (item.text === data.text) {
|
|
|
+ item.active = 'active'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
}
|
|
|
</script>
|
|
@@ -201,6 +226,7 @@ export default {
|
|
|
border-radius: 50px;
|
|
|
}
|
|
|
}
|
|
|
+ // 设备列表
|
|
|
.equipment-list {
|
|
|
width: 100%;
|
|
|
padding: 0 10px;
|
|
@@ -251,10 +277,85 @@ export default {
|
|
|
background: #e6f3fc;
|
|
|
}
|
|
|
}
|
|
|
+ // 空状态
|
|
|
+ .m-empty {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
// 筛选弹窗
|
|
|
- .m-popup {
|
|
|
+ .m-popup-container {
|
|
|
width: 80%;
|
|
|
height: 100%;
|
|
|
+ padding: 55px 20px 10px 20px;
|
|
|
+ .m-popup {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 80px);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .title {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ // 专业
|
|
|
+ .system {
|
|
|
+ width: 100%;
|
|
|
+ height: auto;
|
|
|
+ // 专业系统按钮
|
|
|
+ .system-btn-container {
|
|
|
+ display: flex;
|
|
|
+ width: 100%;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ flex-flow: wrap;
|
|
|
+ .system-btn {
|
|
|
+ width: 50% !important;
|
|
|
+ min-width: 50% !important;
|
|
|
+ max-width: 50% !important;
|
|
|
+ padding: 10px 10px 10px 0;
|
|
|
+ .m-btn {
|
|
|
+ width: 100%;
|
|
|
+ // height: 100%;
|
|
|
+ text-align: center;
|
|
|
+ background: #eff0f1;
|
|
|
+ border-radius: 2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .active {
|
|
|
+ background-color: #025baa !important;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .sbss {
|
|
|
+ flex: 1;
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
+ .divider {
|
|
|
+ border-bottom: 1px solid #e6e6e6;
|
|
|
+ margin: 20px 0;
|
|
|
+ }
|
|
|
+ .footer {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 30px;
|
|
|
+ right: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 50px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ .van-button {
|
|
|
+ width: 40%;
|
|
|
+ height: 100%;
|
|
|
+ max-width: 40%;
|
|
|
+ min-width: 40%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|