Files
app-govern/pages/device/APF/detail.vue

264 lines
9.2 KiB
Vue
Raw Normal View History

2023-02-06 13:34:15 +08:00
<template>
<Cn-page :loading='loading' noPadding>
<view slot='body'>
<view class='detail'>
2023-02-22 08:43:52 +08:00
<view class="detail-header">
<view class="header">
2023-02-23 08:44:46 +08:00
<image src="/static/test2.pic.png" mode="widthFix" style="width: 100%;" />
<view class="point" :style="{ left: '480rpx', top: '130rpx' }">负载THDI:<view></view>1703. 384%</view>
<view class="point" :style="{ left: '200rpx', top: '130rpx' }">电网THDI:<view></view>80. 831%</view>
<view class="module">
<view class="grid-card">
<view class="grid-card-content-2">
<view class="item">模块一</view>
<view class="item">
实际输出电流300A,
总谐波电流200A,
总谐波电压110v
</view>
<view class="item">模块二</view>
<view class="item">
<view>
实际输出电流300A,
总谐波电流200A,
总谐波电压110v
</view>
</view>
<view class="item">模块三</view>
<view class="item">
<view>
实际输出电流300A,
总谐波电流200A,
总谐波电压110v
</view>
</view>
<view class="item">模块四</view>
<view class="item">
<view>
实际输出电流300A,
总谐波电流200A,
总谐波电压110v
</view>
</view>
</view>
</view>
</view>
2023-02-22 08:43:52 +08:00
</view>
<!-- <view class="des">
<text>设备基础信息</text>
<text class="ml10">设备状态</text>
</view> -->
2023-02-23 08:44:46 +08:00
<view class="nav" style="margin-top:-10rpx">
2023-02-22 08:43:52 +08:00
<view class="nav-menu" :class="{ 'nav-menu-active': navMenuActive == index }"
v-for="(item, index) in navMenuList" :key="index" @click="navMenuClick(index)">{{ item.text }}
</view>
2023-02-06 13:34:15 +08:00
</view>
</view>
2023-02-23 08:44:46 +08:00
<view class="content">
2023-02-07 17:59:54 +08:00
<view v-if="navMenuActive == 0">
2023-02-06 13:34:15 +08:00
<basic></basic>
</view>
2023-02-07 17:59:54 +08:00
<view v-else-if="navMenuActive == 1">
2023-02-06 13:34:15 +08:00
<xieBo></xieBo>
</view>
2023-02-07 17:59:54 +08:00
<view v-else-if="navMenuActive == 2">
<power></power>
2023-02-06 13:34:15 +08:00
</view>
2023-02-07 17:59:54 +08:00
<view v-else-if="navMenuActive == 3">
<oscillogram></oscillogram>
2023-02-06 13:34:15 +08:00
</view>
2023-02-07 17:59:54 +08:00
<view v-else-if="navMenuActive == 4">
<IO></IO>
2023-02-06 13:34:15 +08:00
</view>
<view style="height:20rpx"></view>
</view>
2023-02-07 17:59:54 +08:00
<uni-fab ref="fab" direction="vertical" horizontal="right" vertical="bottom" :content="content"
@trigger="trigger" />
2023-02-06 13:34:15 +08:00
</view>
</view>
</Cn-page>
</template>
<script>
2023-02-10 09:16:17 +08:00
import basic from "./comp/basic.vue";
import xieBo from "./comp/xieBo.vue";
import power from "./comp/power.vue";
import oscillogram from "./comp/oscillogram.vue";
import IO from "./comp/IO.vue";
2023-02-06 13:34:15 +08:00
export default {
components: {
basic,
2023-02-07 17:59:54 +08:00
xieBo,
power,
oscillogram,
2023-02-23 08:44:46 +08:00
IO,
2023-02-06 13:34:15 +08:00
},
data () {
return {
loading: false,
navMenuActive: 0,
navHeight: 0,
navMenuList: [{
text: '基本'
}, {
text: '谐波'
}, {
text: '功率'
}, {
text: '波形'
}, {
text: 'I/O'
2023-02-07 17:59:54 +08:00
}],
2023-02-10 16:32:41 +08:00
content: [{
2023-02-09 16:37:53 +08:00
iconPath: '/static/report.png',
2023-02-07 17:59:54 +08:00
text: '告警',
2023-02-10 16:32:41 +08:00
}, {
iconPath: '/static/record.png',
text: '记录',
2023-02-07 17:59:54 +08:00
}, {
iconPath: '/static/about.png',
text: '关于',
},
]
2023-02-06 13:34:15 +08:00
}
},
methods: {
2023-02-07 17:59:54 +08:00
trigger (e) {
2023-02-09 16:37:53 +08:00
console.log(e);
if (e.item.text === '分享') {
2023-02-07 17:59:54 +08:00
this.$refs.share.open()
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '删除') {
2023-02-07 17:59:54 +08:00
uni.showModal({
title: '提示',
content: '确定删除该设备吗?',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
}
});
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '下载') {
2023-02-07 17:59:54 +08:00
this.$util.toast('下载成功')
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '记录') {
2023-02-10 09:16:17 +08:00
uni.navigateTo({ url: '/pages/device/APF/record' })
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '告警') {
2023-02-10 09:16:17 +08:00
uni.navigateTo({ url: '/pages/device/APF/report' })
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '关于') {
2023-02-10 09:16:17 +08:00
uni.navigateTo({ url: '/pages/device/APF/about' })
2023-02-09 16:37:53 +08:00
} else if (e.item.text === '移交') {
uni.navigateTo({ url: '/pages/device/transfer' })
} else if (e.item.text === '反馈') {
uni.navigateTo({ url: '/pages/device/feedback' })
2023-02-10 16:32:41 +08:00
} else if (e.item.text === '用户') {
uni.navigateTo({ url: '/pages/device/user' })
2023-02-23 08:44:46 +08:00
} else if (e.item.text === '报表') {
// uni.navigateTo({ url: '/pages/device/user' })
this.$util.toast('效果是直接打开报表')
2023-02-07 17:59:54 +08:00
}
2023-02-09 16:37:53 +08:00
this.$refs.fab.close()
2023-02-07 17:59:54 +08:00
},
2023-02-06 13:34:15 +08:00
navMenuClick (idx) {
this.navMenuActive = idx
2023-02-23 08:44:46 +08:00
uni.pageScrollTo({ scrollTop: 0, duration: 0 })
2023-02-06 13:34:15 +08:00
},
init () {
2023-02-09 16:37:53 +08:00
let userInfo = uni.getStorageSync(this.$cacheKey.userInfo)
console.log(userInfo.role);
switch (userInfo.role) {
case 3:
this.content.splice(0, 0, {
iconPath: '/static/transfer.png',
text: '移交',
})
break;
case 4:
2023-02-10 16:32:41 +08:00
this.content.splice(1, 0, {
2023-02-09 16:37:53 +08:00
iconPath: '/static/delate.png',
2023-02-23 08:44:46 +08:00
text: '报表',
}, {
iconPath: '/static/table.png',
2023-02-09 16:37:53 +08:00
text: '删除',
})
2023-02-10 16:32:41 +08:00
break;
2023-02-09 16:37:53 +08:00
case 5:
2023-02-23 08:44:46 +08:00
this.content.splice(2, 0, {
iconPath: '/static/table.png',
text: '报表',
}, {
2023-02-09 16:37:53 +08:00
iconPath: '/static/feedback.png',
text: '反馈',
})
break;
default:
break;
}
2023-02-06 13:34:15 +08:00
setTimeout(() => {
// 获取nav高度
uni.createSelectorQuery().select('.nav').boundingClientRect((rect) => {
this.navHeight = rect.height
}).exec()
}, 1000);
}
},
onLoad (options) {
this.init()
},
}
</script>
<style lang='scss'>
.detail {
2023-02-07 17:59:54 +08:00
// background: $uni-theme-white;
2023-02-23 08:44:46 +08:00
.header {
position: relative;
.point {
position: absolute;
color: #111;
z-index: 2;
text-align: center;
font-size: 20rpx;
color: #111;
}
.module {
position: absolute;
bottom: 0;
right: 0;
width: 300rpx;
.grid-card-content-2 {
font-size: 14rpx;
.item {
min-height: unset;
}
}
}
}
2023-02-06 13:34:15 +08:00
.des {
padding: 20rpx 20rpx 0;
font-size: 28rpx;
color: #999;
}
.content {
box-sizing: border-box;
padding: 0 20rpx;
2023-02-23 08:44:46 +08:00
2023-02-06 13:34:15 +08:00
}
2023-02-23 08:44:46 +08:00
.detail-header {
2023-02-22 08:43:52 +08:00
position: sticky;
top: 0;
left: 0;
z-index: 2;
background: #f3f4f5;
}
2023-02-06 13:34:15 +08:00
}
</style>