订舱台账查询区域样式修改

dev
liuxiaoxue 2 years ago
parent 97faa72f11
commit d7fd741dfe

@ -33,15 +33,13 @@
:style="(advanced && { float: 'right', overflow: 'hidden' }) || {}" :style="(advanced && { float: 'right', overflow: 'hidden' }) || {}"
> >
<a-button type="primary" @click="tableRefresh"></a-button> <a-button type="primary" @click="tableRefresh"></a-button>
<a-button style="margin-left: 8px" @click="tableReset"></a-button> <a-button class="reset" @click="tableReset"></a-button>
<a-button style="margin-left: 8px" @click="tableMoreRefresh"></a-button> <a-button class="more-search" @click="tableMoreRefresh"><a-icon type="search" /></a-button>
<span class="tab-btn" @click="formSetting" <span class="tab-btn" @click="formSetting"><a-icon type="filter" /></span>
><a-icon type="filter" :style="{ fontSize: '14px' }" /> <a class="senior-search" @click="toggleAdvanced">
</span> {{ advanced ? '收起查询' : '更多查询' }}
<a @click="toggleAdvanced">
{{ advanced ? '收起筛选' : '高级筛选' }}
<!-- <a-icon :type="advanced ? 'up' : 'down'" /> --> <!-- <a-icon :type="advanced ? 'up' : 'down'" /> -->
<i class="iconfont" :class="advanced ? 'icon-shouqi' : 'icon-zhankai'" style="font-size:12px;"></i> <i class="iconfont" :class="advanced ? 'icon-shouqi' : 'icon-zhankai'"></i>
</a> </a>
</span> </span>
</a-col> </a-col>
@ -50,7 +48,7 @@
</div> </div>
</x-card> </x-card>
<x-card class="content-table"> <x-card class="content-table">
<div slot="content" class="table-page-search-wrapper"> <div slot="content" class="table-page-search-wrapper" :style="{marginTop:'-8px'}">
<vxe-toolbar style="padding-top:0px;"> <vxe-toolbar style="padding-top:0px;">
<template #tools> <template #tools>
<div class="right BookTopButton"> <div class="right BookTopButton">
@ -644,20 +642,68 @@ export default {
} }
} }
.table-page-search-submitButtons { .table-page-search-submitButtons {
.tab-btn{ text-align: right;
.reset{
margin-left:8px;
margin-right:50px;
}
.more-search{
margin-left:8px;
margin-right: 20px;
padding-right: 20px;
border: none;
position: relative;
}
/*.tab-btn{
margin-left:8px; margin-left:8px;
margin-right: 10px; margin-right: 10px;
padding:6px 9px; padding:6px 9px;
padding-top:5px; padding-top:5px;
border: 1px solid #c7c7c9; border: 1px solid #c7c7c9;
background: #f9fafe;
border-radius: 3px; border-radius: 3px;
cursor: pointer; cursor: pointer;
}*/
.tab-btn{
cursor: pointer;
position: relative;
i{
font-size: 14px;
margin-left:8px;
}
}
.tab-btn::before{
content: "";
position: absolute;
width: 1px;
height: 17px;
background: #ccc;
top: 2px;
left: -20px;
}
.senior-search{
margin-left: 36px;
color: rgba(0, 0, 0, 0.65);
position: relative;
i{
margin-left: 3px;
font-size: 15px;
}
}
.senior-search::before{
content: "";
position: absolute;
width: 1px;
height: 17px;
background: #ccc;
top: 2px;
left: -16px;
}
.senior-search:hover{
color: @primary-color;
i{
color: @primary-color;
} }
} }
.table-page-search-submitButtons {
text-align: right;
} }
.ant-btn { .ant-btn {
margin-right: 8px; margin-right: 8px;

Loading…
Cancel
Save