| | |
| | | <el-col :span="17"> |
| | | <div class="h100 relative"> |
| | | <div class="ml-6 h100"> |
| | | <el-tabs v-model="state.activeMetricName" @tab-click="handleClick" class="h100"> |
| | | <el-tabs v-model="state.activeMetricName" @tab-change="handleClick" class="h100"> |
| | | <el-tab-pane label="基础信息" name="basicInformation"> |
| | | <div class="h100"> |
| | | <el-descriptions title="指标信息" :column="2"> |
| | |
| | | import * as echarts from 'echarts'; |
| | | import { onMounted, reactive, ref } from 'vue'; |
| | | import { useRoute, useRouter } from 'vue-router'; |
| | | import { eDimensionFilter_Ops, eDrilling_Ops } from '/@/views/types/metric'; |
| | | import { eDimensionFilter_Ops, eDrilling_Ops } from '/@/views/types/metrics/index'; |
| | | const router = useRouter(); |
| | | const route = useRoute(); |
| | | // 定义变量内容 |
| | |
| | | //#endregion |
| | | //#region ====================== init 图表 ====================== |
| | | const chartExplorationRef = ref(null); |
| | | const chartExploration = echarts.init(chartExplorationRef.value); |
| | | |
| | | const initChartExploration = () => { |
| | | const chartExploration = echarts.init(chartExplorationRef.value); |
| | | chartExploration.setOption({ |
| | | tooltip: { |
| | | trigger: 'axis', |