修改页面样式

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 {