hookehuyr

style(favorites): 优化收藏页面标签栏样式

- 移除标签栏背景图,改用白色背景和圆角设计
- 新增登录页配置文件,设置自定义导航栏样式

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
6 <!-- Tabs Section --> 6 <!-- Tabs Section -->
7 <!-- Background image from design --> 7 <!-- Background image from design -->
8 <view 8 <view
9 - class="w-[706rpx] h-[144rpx] mt-[40rpx] bg-[url('https://lanhu-oss-2537-2.lanhuapp.com/SketchPnga29210f2f5f94a789a5a08d5b75affd2f68da6108c1cf5328ce44da4ad92ee40')] bg-[length:100%_100%] bg-no-repeat flex items-center px-[32rpx]"> 9 + class="w-[706rpx] h-[144rpx] mt-[40rpx] bg-white flex items-center px-[32rpx] rounded-[24rpx]">
10 <div class="flex overflow-x-auto no-scrollbar space-x-[24rpx] w-full items-center"> 10 <div class="flex overflow-x-auto no-scrollbar space-x-[24rpx] w-full items-center">
11 <div v-for="(tab, index) in tabs" :key="index" 11 <div v-for="(tab, index) in tabs" :key="index"
12 class="px-[32rpx] py-[16rpx] rounded-full text-[28rpx] whitespace-nowrap transition-colors" 12 class="px-[32rpx] py-[16rpx] rounded-full text-[28rpx] whitespace-nowrap transition-colors"
......
1 +/*
2 + * @Date: 2025-06-28 10:33:00
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2026-01-30 13:50:37
5 + * @FilePath: /manulife-weapp/src/pages/login/index.config.js
6 + * @Description: 登录页配置
7 + */
8 +export default definePageConfig({
9 + navigationBarTitleText: '登录',
10 + navigationStyle: 'custom'
11 +})