|
@@ -2,7 +2,7 @@
|
|
|
<view class="complex-search">
|
|
<view class="complex-search">
|
|
|
<!-- PC/平板端:直接显示表单 -->
|
|
<!-- PC/平板端:直接显示表单 -->
|
|
|
<cwg-match-media :min-width="991">
|
|
<cwg-match-media :min-width="991">
|
|
|
- <view v-if="!isMobile" class="search-bar search-form">
|
|
|
|
|
|
|
+ <view class="search-bar search-form">
|
|
|
<view v-for="(row, rowIndex) in formRows" :key="rowIndex" class="form-row">
|
|
<view v-for="(row, rowIndex) in formRows" :key="rowIndex" class="form-row">
|
|
|
<view v-for="field in row" :key="field.key" class="form-item">
|
|
<view v-for="field in row" :key="field.key" class="form-item">
|
|
|
<view class="search-bar">
|
|
<view class="search-bar">
|
|
@@ -64,7 +64,7 @@
|
|
|
</cwg-match-media>
|
|
</cwg-match-media>
|
|
|
|
|
|
|
|
<cwg-popup v-model:visible="visible" type="center" :mask-click="false" :showFooters="true"
|
|
<cwg-popup v-model:visible="visible" type="center" :mask-click="false" :showFooters="true"
|
|
|
- :title="t('Documentary.tradingCenter.item3')">
|
|
|
|
|
|
|
+ :title="t('Documentary.tradingCenter.item3')" class="search-dialog">
|
|
|
<scroll-view scroll-y class="drawer-content" style="overflow: visible;">
|
|
<scroll-view scroll-y class="drawer-content" style="overflow: visible;">
|
|
|
<view v-for="field in nonDateField" :key="field.key" class="filter-item">
|
|
<view v-for="field in nonDateField" :key="field.key" class="filter-item">
|
|
|
<view class="label">{{ field.label }}</view>
|
|
<view class="label">{{ field.label }}</view>
|
|
@@ -444,6 +444,7 @@ onMounted(() => {
|
|
|
.reset-btn,
|
|
.reset-btn,
|
|
|
.search-btn {
|
|
.search-btn {
|
|
|
background-color: var(--btn-color);
|
|
background-color: var(--btn-color);
|
|
|
|
|
+ color: var(--btn-color);
|
|
|
line-height: px2rpx(35);
|
|
line-height: px2rpx(35);
|
|
|
font-size: px2rpx(14);
|
|
font-size: px2rpx(14);
|
|
|
}
|
|
}
|
|
@@ -570,5 +571,12 @@ onMounted(() => {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+}
|
|
|
|
|
+.search-dialog{
|
|
|
|
|
+ .search-btn{
|
|
|
|
|
+ color: var(--btn-color);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|