Files
admin-govern/src/views/govern/device/control/tabs/components/waveFormAnalysis.vue

165 lines
4.5 KiB
Vue
Raw Normal View History

2024-07-31 10:42:04 +08:00
<!-- 暂态事件-波形解析组件 -->
2024-07-23 17:28:31 +08:00
<template>
2024-09-27 10:27:33 +08:00
<div class="home">
<div class="home_header">
2024-07-23 17:28:31 +08:00
<el-form-item label="值类型选择">
2024-07-31 10:42:04 +08:00
<el-select @change="changeView" v-model="value" placeholder="请选择值类型">
2024-09-29 18:15:54 +08:00
<el-option v-for="(item, index) in options" :key="index" :label="item.label"
:value="item.value"></el-option>
2024-07-23 17:28:31 +08:00
</el-select>
</el-form-item>
2024-09-27 10:27:33 +08:00
<el-form-item label="">
<el-button type="primary" @click="handleBack" :icon="ArrowLeft">返回</el-button>
</el-form-item>
2024-07-23 17:28:31 +08:00
</div>
2024-09-27 10:27:33 +08:00
<el-tabs class="home_body" type="border-card" v-model="activeName" @tab-click="handleClick">
2024-09-29 18:15:54 +08:00
<el-tab-pane label="瞬时波形" name="ssbx"
:style="'height:' + bxecharts + ';overflow-y: scroll;padding-bottom:200px;'">
<shushiboxi v-if="isWp && wp && activeName == 'ssbx'" :value="value" :boxoList="boxoList" :wp="wp">
</shushiboxi>
2024-07-31 10:42:04 +08:00
</el-tab-pane>
2024-09-29 18:15:54 +08:00
<el-tab-pane label="RMS波形" name="rmsbx"
:style="'height:' + bxecharts + ';overflow-y: scroll;padding-bottom:200px;'">
<rmsboxi v-if="isWp && wp && activeName == 'rmsbx'" :value="value" :boxoList="boxoList" :wp="wp">
</rmsboxi>
2024-07-31 10:42:04 +08:00
</el-tab-pane>
2024-07-23 17:28:31 +08:00
</el-tabs>
</div>
</template>
<script lang="ts" setup>
2024-09-27 10:27:33 +08:00
import { ref, onMounted, reactive, defineExpose, watch, defineEmits } from 'vue'
2024-07-23 17:28:31 +08:00
import { VxeGridProps, VxeGridPropTypes } from 'vxe-table'
import { defaultAttribute } from '@/components/table/defaultAttribute'
2024-07-31 10:42:04 +08:00
import shushiboxi from '@/components/echarts/shushiboxi.vue'
import rmsboxi from '@/components/echarts/rmsboxi.vue'
2024-07-23 17:28:31 +08:00
import MyEchart from '@/components/echarts/MyEchart.vue'
2024-09-27 10:27:33 +08:00
import { Platform, TrendCharts, DataLine, ArrowLeft } from '@element-plus/icons-vue'
2024-07-31 10:42:04 +08:00
import { mainHeight } from '@/utils/layout'
const props = defineProps(['wp'])
2024-07-23 17:28:31 +08:00
const searchForm = ref({
type: 0
})
2024-09-27 10:27:33 +08:00
const emit = defineEmits(['handleHideCharts'])
2024-07-23 17:28:31 +08:00
const tableList: any = ref([])
2024-07-31 10:42:04 +08:00
for (let i = 0; i < 300; i++) {
2024-07-23 17:28:31 +08:00
tableList.value.push({
name: i + 1,
value: Math.floor(Math.random() * 101)
})
}
interface RowVO {
[key: string]: any
}
//谐波电压含有率
const gridOptions = ref<VxeGridProps<RowVO>>({
border: true,
showOverflow: true,
showHeader: false,
columns: [],
data: [],
columnConfig: {
resizable: true
},
align: 'center'
})
gridOptions.value = { ...defaultAttribute, ...gridOptions.value }
const yAxisUnit: any = ref('')
const echartsData1: any = ref([]),
echartsData2: any = ref([]),
echartsData3: any = ref([]),
barCharts1 = ref(),
barCharts2 = ref(),
barCharts3 = ref()
2024-07-31 10:42:04 +08:00
const view = ref(true)
const view2 = ref(false)
const showBoxi = ref(true)
const activeName = ref('ssbx')
const wp = ref({})
2024-09-27 10:27:33 +08:00
const value = ref(1)
2024-07-31 10:42:04 +08:00
const options = ref([
{
value: 1,
label: '一次值'
},
{
value: 2,
label: '二次值'
}
])
2024-09-27 10:27:33 +08:00
2024-08-01 10:55:08 +08:00
const isWp = ref(false)
const boxoList: any = ref([])
const getWpData = (val: any, list: any) => {
2024-07-31 10:42:04 +08:00
wp.value = val
2024-08-01 10:55:08 +08:00
isWp.value = true
boxoList.value = list
console.log(wp.value, val, 'ggggghhhh')
2024-07-31 10:42:04 +08:00
}
const changeView = () => {
2024-08-01 10:55:08 +08:00
showBoxi.value = false
setTimeout(() => {
showBoxi.value = true
}, 0)
2024-07-31 10:42:04 +08:00
}
2024-08-01 10:55:08 +08:00
const bxecharts = mainHeight(195).height as any
2024-07-23 17:28:31 +08:00
const handleClick = (tab: any, event: any) => {
2024-08-01 10:55:08 +08:00
// activeName.value = tab.index
2024-07-31 10:42:04 +08:00
if (tab.name == 'ssbx') {
activeName.value = 'ssbx'
} else if (tab.name == 'rmsbx') {
activeName.value = 'rmsbx'
}
2024-07-23 17:28:31 +08:00
}
2024-09-27 10:27:33 +08:00
const handleBack = () => {
emit('handleHideCharts')
}
2024-09-29 18:15:54 +08:00
onMounted(() => { })
2024-07-31 10:42:04 +08:00
defineExpose({ getWpData })
2024-07-23 17:28:31 +08:00
</script>
<style lang="scss" scoped>
.tab_info {
width: 100%;
height: calc(100vh - 450px);
2024-09-29 18:15:54 +08:00
2024-07-23 17:28:31 +08:00
// overflow: auto;
// padding-bottom: 20px;
.charts {
width: 100%;
margin-top: 10px;
height: calc(100vh - 450px);
}
}
2024-09-25 16:31:45 +08:00
2024-09-27 10:27:33 +08:00
.home {
2024-07-23 17:28:31 +08:00
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
2024-09-29 18:15:54 +08:00
2024-09-27 10:27:33 +08:00
.home_header {
// position: absolute;
// top: -25px;
// left: 0;
// width: 80%;
// height: 40px;
height: 50px;
display: flex;
align-items: center;
2024-09-29 18:15:54 +08:00
2024-08-01 10:55:08 +08:00
.el-select {
width: 200px !important;
}
2024-07-23 17:28:31 +08:00
}
2024-09-29 18:15:54 +08:00
2024-09-27 10:27:33 +08:00
.home_body {
// margin-top: 20px;
2024-08-01 10:55:08 +08:00
flex: 1;
2024-07-23 17:28:31 +08:00
}
}
</style>