|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
- <view :class="['result-data-search-summary', 'content-padding']">
|
|
|
+ <view :class="['result-data-search-summary', tabsActiveChild == 1 ? 'content-padding':'content-padding-min']">
|
|
|
<view class="content-ul">
|
|
|
- <view class="report-ul" style="margin-right:10rpx">
|
|
|
+ <view class="report-ul" style="margin-right: 10rpx">
|
|
|
<block v-for="(item, index) in resultList" :key="index">
|
|
|
<view v-if="index % 2 == 0">
|
|
|
<ReportItem v-if="item.Source == 1" :list="item" />
|
|
@@ -48,7 +48,7 @@ export default {
|
|
|
|
|
|
<style lang="scss">
|
|
|
.result-data-search-summary {
|
|
|
- padding: 0rpx 12rpx;
|
|
|
+ padding-left: 15rpx;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
background-color: #f5f6fa;
|
|
@@ -62,4 +62,7 @@ export default {
|
|
|
.content-padding {
|
|
|
padding-top: 90rpx !important;
|
|
|
}
|
|
|
+.content-padding-min {
|
|
|
+ padding-top: 20rpx;
|
|
|
+}
|
|
|
</style>
|