修改页面样式

This commit is contained in:
GGJ
2024-11-27 16:32:13 +08:00
parent 52b41a3248
commit a008424927
7 changed files with 67 additions and 27 deletions

View File

@@ -2,8 +2,8 @@
<template>
<div class="realtrend" v-loading="loading">
<div class="select">
<div class="mr10">偶数/ </div>
<el-select v-model="selectValue" v-if="!loading" style="width: 100px" >
<div class="mr10">谐波次 </div>
<el-select v-model="selectValue" v-if="!loading" style="width: 100px">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
</div>
@@ -76,6 +76,11 @@ const tableList: any = []
const selectValue = ref('1')
const options = [
{
value: '3',
label: '全部',
},
{
value: '1',
label: '奇次',
@@ -84,10 +89,6 @@ const options = [
value: '2',
label: '偶次',
},
{
value: '3',
label: '全部',
},
]
interface RowVO {

View File

@@ -20,8 +20,8 @@
<el-option value="Secondary" label="二次值"></el-option>
</el-select>
</el-form-item>
<el-form-item label="数据类型">
<el-select style="min-width: 120px !important" placeholder="请选择" v-model="searchForm.valueType" clearable>
<el-form-item label="统计类型">
<el-select style="min-width: 120px !important" placeholder="请选择" v-model="searchForm.valueType">
<el-option value="max" label="最大值"></el-option>
<el-option value="min" label="最小值"></el-option>
<el-option value="avg" label="平均值"></el-option>
@@ -108,7 +108,7 @@ searchForm.value = {
searchBeginTime: '',
searchEndTime: '',
dataLevel: 'Primary',
valueType:''
valueType: 'avg'
}
//统计指标
const indexOptions: any = ref([])