hookehuyr

style: 更新主题色为橙色#FFA135

修改导航栏背景色、渐变背景及添加对应的CSS类
1 /* 1 /*
2 * @Date: 2025-06-28 10:33:00 2 * @Date: 2025-06-28 10:33:00
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-04 16:18:21 4 + * @LastEditTime: 2025-07-15 15:42:47
5 * @FilePath: /jgdl/src/app.config.js 5 * @FilePath: /jgdl/src/app.config.js
6 * @Description: 配置文件 6 * @Description: 配置文件
7 */ 7 */
...@@ -37,7 +37,7 @@ export default { ...@@ -37,7 +37,7 @@ export default {
37 ], 37 ],
38 window: { 38 window: {
39 backgroundTextStyle: 'light', 39 backgroundTextStyle: 'light',
40 - navigationBarBackgroundColor: '#fb923c', 40 + navigationBarBackgroundColor: '#FFA135',
41 navigationBarTitleText: 'WeChat', 41 navigationBarTitleText: 'WeChat',
42 navigationBarTextStyle: 'white' 42 navigationBarTextStyle: 'white'
43 }, 43 },
......
...@@ -46,3 +46,7 @@ button::after { ...@@ -46,3 +46,7 @@ button::after {
46 .input-placeholder, .textarea-placeholder { 46 .input-placeholder, .textarea-placeholder {
47 color: #9ca3af; 47 color: #9ca3af;
48 } 48 }
49 +
50 +.bg-orange-400 {
51 + background-color: #FFA135;
52 +}
......
1 <!-- 1 <!--
2 * @Date: 2025-06-28 10:33:00 2 * @Date: 2025-06-28 10:33:00
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-11 11:14:57 4 + * @LastEditTime: 2025-07-15 15:43:30
5 * @FilePath: /jgdl/src/pages/index/index.vue 5 * @FilePath: /jgdl/src/pages/index/index.vue
6 * @Description: 捡个电驴首页 6 * @Description: 捡个电驴首页
7 --> 7 -->
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
28 </nut-sticky> 28 </nut-sticky>
29 29
30 <!-- Banner --> 30 <!-- Banner -->
31 - <view class="px-4 pt-4" style="background: linear-gradient( 180deg, #fb923c 0%, rgba(255,203,53,0) 61%);"> 31 + <view class="px-4 pt-4" style="background: linear-gradient( 180deg, #FFA135 0%, rgba(255,203,53,0) 61%);">
32 <nut-swiper :init-page="0" :pagination-visible="true" pagination-color="#ffffff" auto-play="3000" 32 <nut-swiper :init-page="0" :pagination-visible="true" pagination-color="#ffffff" auto-play="3000"
33 class="rounded-lg overflow-hidden" height="160"> 33 class="rounded-lg overflow-hidden" height="160">
34 <nut-swiper-item v-for="(image, index) in bannerImages" :key="index"> 34 <nut-swiper-item v-for="(image, index) in bannerImages" :key="index">
......