页面样式调整

This commit is contained in:
白菜
2025-06-24 22:48:33 +08:00
parent 7145afd5a0
commit 6cec2849ba
14 changed files with 213 additions and 275 deletions

View File

@ -20,7 +20,7 @@
</el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="warning" @click="onSearch" native-type="button">搜索</el-button>
<el-button type="primary" @click="onSearch" native-type="button">搜索</el-button>
</el-form-item>
<el-form-item>
<el-button @click="onReset" native-type="button">重置</el-button>
@ -31,8 +31,8 @@
<!-- 二个选择按钮-->
<el-row style="">
<el-col :xs="24" :sm="24" :lg="24">
<el-button-group>
<el-button v-for="(item,index) in btnList" :key="index+'flqxcBtns'" type="warning" :class="{'activeBtn' : activeBtn === item.id}" @click="changeDataType(item.id)">{{item.name}}</el-button>
<el-button-group class="ems-btns-group">
<el-button v-for="(item,index) in btnList" :key="index+'flqxcBtns'" :class="{'activeBtn' : activeBtn === item.id}" @click="changeDataType(item.id)">{{item.name}}</el-button>
</el-button-group>
</el-col>
</el-row>
@ -156,12 +156,3 @@ export default {
},
}
</script>
<style scoped lang="scss">
.activeBtn{
background-color: #FFF2CB;
border-color: #FFF2CB;
color: #666666;
font-weight: 600;
}
</style>