|
@@ -1,22 +1,55 @@
|
|
|
<template>
|
|
|
<div class='asset-detail'>
|
|
|
- <van-nav-bar title="设备详情" @click-left='backPage'>
|
|
|
+ <van-nav-bar title="设备详情" @click-left='backPage' @click-right='handleRightClick'>
|
|
|
<template #left>
|
|
|
<van-icon name="arrow-left" size="18" color="#333333" />
|
|
|
</template>
|
|
|
+ <template #right v-if="active == 1 || active == 2">
|
|
|
+ <i class='iconfont wanda-scan'></i>
|
|
|
+ </template>
|
|
|
</van-nav-bar>
|
|
|
+
|
|
|
<van-tabs v-model='active' class='other-tabs' color='#025BAA' @change='changeTab' title-active-color='#025BAA'
|
|
|
:line-width='60'>
|
|
|
<van-tab title='设备信息'>
|
|
|
<Information />
|
|
|
</van-tab>
|
|
|
<van-tab title='重要维保'>
|
|
|
- <div>重要维保</div>
|
|
|
+ <Repair />
|
|
|
</van-tab>
|
|
|
<van-tab title='重要维修'>
|
|
|
<div>重要维修</div>
|
|
|
</van-tab>
|
|
|
</van-tabs>
|
|
|
+
|
|
|
+ <!-- 点击头部筛选,出现的右侧弹窗 -->
|
|
|
+ <van-popup class='m-popup-container' v-model='showPopup' position='right'>
|
|
|
+ <div class='m-popup'>
|
|
|
+ <!-- 系统 -->
|
|
|
+ <!-- <div class='system'>
|
|
|
+ <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'>设备设施</h1>
|
|
|
+ <div class='system-btn-container'>
|
|
|
+ <div class='system-btn' v-for='(item,index) in sbssList' :key='index'>
|
|
|
+ <van-button class='m-btn' :class='item.active' @click='changeSbss(item)'>{{item.text}}</van-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class='footer'>
|
|
|
+ <van-button size='large' color='#025BAA' plain type='info' @click='reset'>重置</van-button>
|
|
|
+ <van-button size='large' color='#025BAA' type='info' @click='confirm'>确定</van-button>
|
|
|
+ </div> -->
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -25,19 +58,32 @@
|
|
|
*/
|
|
|
import Vue from 'vue'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
-import { NavBar, Tab, Tabs } from 'vant'
|
|
|
+import { NavBar, Tab, Tabs, Popup, Button } from 'vant'
|
|
|
import Information from "@/components/assetDetail/Information.vue"
|
|
|
-Vue.use(NavBar).use(Tab).use(Tabs)
|
|
|
+import Repair from "@/components/assetDetail/Repair.vue"
|
|
|
+Vue.use(NavBar).use(Tab).use(Tabs).use(Popup).use(Button)
|
|
|
export default {
|
|
|
name: 'AssetDetail',
|
|
|
props: {},
|
|
|
- components: { Information },
|
|
|
+ components: { Information, Repair },
|
|
|
computed: {
|
|
|
...mapGetters(['plazaId', 'fmapID', 'haveFengMap', 'bunkObj', 'floorsArr', 'categoryId']),
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
active: 0,
|
|
|
+ showPopup: false,
|
|
|
+ systemList: [
|
|
|
+ { text: '全部', smsxt: '', active: 'active' },
|
|
|
+ { text: '供电系统', smsxt: '1001', active: '' },
|
|
|
+ { text: '暖通系统', smsxt: '1002', active: '' },
|
|
|
+ { text: '消防系统', smsxt: '1003', active: '' },
|
|
|
+ { text: '弱电系统', smsxt: '1004', active: '' },
|
|
|
+ { text: '给排水系统', smsxt: '1005', active: '' },
|
|
|
+ { text: '电梯系统', smsxt: '1006', active: '' },
|
|
|
+ { text: '燃气系统', smsxt: '1007', active: '' },
|
|
|
+ { text: '土建系统', smsxt: '1008', active: '' },
|
|
|
+ ],
|
|
|
}
|
|
|
},
|
|
|
props: {},
|
|
@@ -49,8 +95,17 @@ export default {
|
|
|
backPage() {
|
|
|
this.$router.go(-1)
|
|
|
},
|
|
|
+ /**
|
|
|
+ * 点击右侧筛选
|
|
|
+ */
|
|
|
+ handleRightClick() {
|
|
|
+ this.showPopup = true
|
|
|
+ },
|
|
|
changeTab(active) {
|
|
|
- console.log(active)
|
|
|
+ console.log(this.active)
|
|
|
+ },
|
|
|
+ changeSystem(item) {
|
|
|
+ console.log(item)
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -73,11 +128,112 @@ export default {
|
|
|
/deep/ .van-tabs__content {
|
|
|
height: calc(100% - 45px);
|
|
|
.van-tab__pane {
|
|
|
- background: #F5F6F7;
|
|
|
+ background: #f5f6f7;
|
|
|
height: 100%;
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ // 筛选弹窗
|
|
|
+ .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;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ overflow: auto;
|
|
|
+ .title {
|
|
|
+ width: 100%;
|
|
|
+ height: 25px;
|
|
|
+ }
|
|
|
+ .system-btn-container {
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+ overflow: auto;
|
|
|
+ .system-btn {
|
|
|
+ width: 100% !important;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background: #eff0f1 !important;
|
|
|
+ margin: 10px 0 10px 0;
|
|
|
+ .m-btn {
|
|
|
+ display: block !important;
|
|
|
+ width: 100% !important;
|
|
|
+ // height: 100%;
|
|
|
+ text-align: center;
|
|
|
+ background: #eff0f1;
|
|
|
+ border-radius: 2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .active {
|
|
|
+ background-color: #025baa !important;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .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>
|