修改冀北现场问题
This commit is contained in:
@@ -10,15 +10,19 @@
|
||||
<div class="boxSteps">
|
||||
<el-steps>
|
||||
<template v-for="(item, i) in Voltage">
|
||||
<el-step :class="active == i ? 'highlight' : ''" :title="item.name"
|
||||
@click="handleClick(i)"></el-step>
|
||||
<el-step
|
||||
:class="active == i ? 'highlight' : ''"
|
||||
:title="item.name"
|
||||
@click="handleClick(i)"
|
||||
></el-step>
|
||||
</template>
|
||||
</el-steps>
|
||||
</div>
|
||||
<div v-for="(item, i) in evaluationData" class="evaluationData">
|
||||
<el-row style="width: 100%">
|
||||
<el-col :span="12" style="display: flex">
|
||||
<img :src="url[i]" />
|
||||
<!-- <img :src="url[i]" /> -->
|
||||
<span :class="`iconfont ${url[i]} icoColor`"></span>
|
||||
<span>{{ item.targetName }}</span>
|
||||
</el-col>
|
||||
<el-col :span="12" style="display: flex">
|
||||
@@ -66,11 +70,11 @@ const Voltage: any = dictData.getBasicData('Dev_Voltage_Stand').filter(item => {
|
||||
|
||||
const chartRef = ref<HTMLDivElement>()
|
||||
const url: any = [
|
||||
new URL(`@/assets/img/PLPC.png`, import.meta.url),
|
||||
new URL(`@/assets/img/DYPC.png`, import.meta.url),
|
||||
new URL(`@/assets/img/JBL.png`, import.meta.url),
|
||||
new URL(`@/assets/img/SXDY.png`, import.meta.url),
|
||||
new URL(`@/assets/img/SB.png`, import.meta.url)
|
||||
'icon-frequency',
|
||||
'icon-dianya',
|
||||
'icon-dianyazongxiebojibianshuai',
|
||||
'icon-sanxiangdianyafuzhibupingheng',
|
||||
'icon-a-253_ipower'
|
||||
]
|
||||
const tableData: any = ref([])
|
||||
|
||||
@@ -199,6 +203,7 @@ const handleClick = (i: any) => {
|
||||
defineExpose({ open })
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import '@/assets/font/iconfont.css';
|
||||
:deep(.el-select) {
|
||||
min-width: 80px;
|
||||
}
|
||||
@@ -283,4 +288,9 @@ defineExpose({ open })
|
||||
// color: var(--el-color-primary) !important;
|
||||
// }
|
||||
}
|
||||
.icoColor {
|
||||
color: var(--el-color-primary);
|
||||
margin: 0 20px;
|
||||
font-size: 20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user