From d407c0ea894829ad847f7ca69d4ae20a7a1c0687 Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Fri, 13 Oct 2023 16:23:18 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=AF=BC=E8=88=AA=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.css | 2 +- pages/index/index.vue | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/index/index.css b/pages/index/index.css index 12dfebc4..59ab9cab 100644 --- a/pages/index/index.css +++ b/pages/index/index.css @@ -84,7 +84,7 @@ .search-content-fixed-content { background-repeat: no-repeat; background-size: 100% auto; - background-position: 0 13%; + background-position: top; padding-bottom: 20rpx; /* #ifdef H5 || APP */ padding-top: 15rpx !important; diff --git a/pages/index/index.vue b/pages/index/index.vue index a2ef31cd..8dac9dd2 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -339,7 +339,7 @@ is_logo_use_text: app.globalData.data.is_logo_use_text || 0, // 顶部+搜索样式配置 top_content_bg_color: 'background:linear-gradient(180deg, ' + theme_color + ' 0%, #f5f5f5 80%)', - top_content_search_bg_color: 'background:linear-gradient(180deg, ' + theme_color + ' 0%, #f5f5f5 360%)', + top_content_search_bg_color: 'background:linear-gradient(180deg, ' + theme_color + ' 0%, #f5f5f5 460%)', top_content_search_content_style: 'background-image: url("' + static_url + 'nav-top.png");', top_content_style: 'padding-top:' + (bar_height + 7) + 'px;', // #ifdef H5 || MP-TOUTIAO || APP @@ -494,10 +494,10 @@ if (data.banner_list && data.banner_list.length > 0) { if ((data.banner_list[0]['bg_color'] || null) != null) { this.top_content_bg_color = 'background: linear-gradient(180deg, ' + data.banner_list[0].bg_color + ' 0%, #f5f5f5 80%);'; - this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + data.banner_list[0].bg_color + ' 0%, #f5f5f5 360%);'; + this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + data.banner_list[0].bg_color + ' 0%, #f5f5f5 460%);'; } else { this.top_content_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 80%);'; - this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 360%);'; + this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 460%);'; } } @@ -613,10 +613,10 @@ change_banner(color) { if ((color || null) != null) { this.top_content_bg_color = 'background: linear-gradient(180deg, ' + color + ' 0%, #f5f5f5 80%);'; - this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + color + ' 0%, #f5f5f5 360%);'; + this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + color + ' 0%, #f5f5f5 460%);'; } else { this.top_content_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 80%);'; - this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 360%);'; + this.top_content_search_bg_color = 'background: linear-gradient(180deg, ' + this.theme_color + ' 0%, #f5f5f5 460%);'; } }, },