修改页面样式
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user