|
@@ -69,7 +69,8 @@ const {
|
|
|
onFreeTaste,
|
|
|
interceptKeywords,
|
|
|
toggleBlurModeTip,
|
|
|
- doToggleSearchBlurMode
|
|
|
+ doToggleSearchBlurMode,
|
|
|
+ showFilter
|
|
|
} = SearchBidModel
|
|
|
|
|
|
const {
|
|
@@ -97,7 +98,10 @@ const articleRef = ref({
|
|
|
|
|
|
<template>
|
|
|
<div class="search-bidding-page">
|
|
|
- <div class="search-bidding-header-container">
|
|
|
+ <div
|
|
|
+ class="search-bidding-header-container"
|
|
|
+ :class="{ 'b-rd-self': !showFilter }"
|
|
|
+ >
|
|
|
<search-bid-header></search-bid-header>
|
|
|
</div>
|
|
|
<div
|
|
@@ -597,6 +601,9 @@ const articleRef = ref({
|
|
|
.search-bidding-header-container {
|
|
|
background-color: #fff;
|
|
|
border-radius: 8px 8px 0 0;
|
|
|
+ &.b-rd-self {
|
|
|
+ border-radius: 8px;
|
|
|
+ }
|
|
|
}
|
|
|
.search-bidding-filter-container {
|
|
|
width: 100%;
|