hookehuyr

style: 统一将主题色从 #fb923c 更改为 #FFA135

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 +}
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
12 <view style="font-size: 32rpx;">实付金额</view> 12 <view style="font-size: 32rpx;">实付金额</view>
13 <view style="color: red; margin: 10rpx 0;"><text style="font-size: 50rpx;">¥</text><text style="font-size: 80rpx;">{{ price }}</text></view> 13 <view style="color: red; margin: 10rpx 0;"><text style="font-size: 50rpx;">¥</text><text style="font-size: 80rpx;">{{ price }}</text></view>
14 <!-- <view style="font-size: 28rpx; margin-bottom: 20rpx;">支付剩余时间 <text style="color: red;">{{ formatTime(remain_time) }}</text></view> --> 14 <!-- <view style="font-size: 28rpx; margin-bottom: 20rpx;">支付剩余时间 <text style="color: red;">{{ formatTime(remain_time) }}</text></view> -->
15 - <nut-button block color="#fb923c" @tap="goToPay">立即支付</nut-button> 15 + <nut-button block color="#FFA135" @tap="goToPay">立即支付</nut-button>
16 </view> 16 </view>
17 </nut-action-sheet> 17 </nut-action-sheet>
18 </div> 18 </div>
......
...@@ -8,5 +8,5 @@ ...@@ -8,5 +8,5 @@
8 export default { 8 export default {
9 navigationBarTitleText: '', 9 navigationBarTitleText: '',
10 enableShareAppMessage: true, 10 enableShareAppMessage: true,
11 - // navigationBarBackgroundColor: '#fb923c' 11 + // navigationBarBackgroundColor: '#FFA135'
12 } 12 }
......
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:45:21
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">
......
...@@ -516,7 +516,7 @@ onMounted(() => { ...@@ -516,7 +516,7 @@ onMounted(() => {
516 } 516 }
517 517
518 .bg-orange-400 { 518 .bg-orange-400 {
519 - background-color: #fb923c; 519 + background-color: #FFA135;
520 } 520 }
521 521
522 .p-4 { 522 .p-4 {
...@@ -659,7 +659,7 @@ onMounted(() => { ...@@ -659,7 +659,7 @@ onMounted(() => {
659 left: 0; 659 left: 0;
660 right: 0; 660 right: 0;
661 height: 4rpx; 661 height: 4rpx;
662 - background: linear-gradient(90deg, #f97316, #fb923c); 662 + background: linear-gradient(90deg, #f97316, #FFA135);
663 border-radius: 2rpx; 663 border-radius: 2rpx;
664 animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); 664 animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
665 } 665 }
......
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
112 left: 0; 112 left: 0;
113 right: 0; 113 right: 0;
114 height: 4rpx; 114 height: 4rpx;
115 - background: linear-gradient(90deg, #f97316, #fb923c); 115 + background: linear-gradient(90deg, #f97316, #FFA135);
116 border-radius: 2rpx; 116 border-radius: 2rpx;
117 animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); 117 animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
118 } 118 }
......
...@@ -191,7 +191,7 @@ const onMyAuthCar = () => { ...@@ -191,7 +191,7 @@ const onMyAuthCar = () => {
191 } 191 }
192 192
193 .header { 193 .header {
194 - background: #fb923c; 194 + background: #FFA135;
195 padding: 64rpx 0 32rpx; 195 padding: 64rpx 0 32rpx;
196 position: relative; 196 position: relative;
197 197
......
...@@ -7,5 +7,5 @@ ...@@ -7,5 +7,5 @@
7 */ 7 */
8 export default { 8 export default {
9 navigationBarTitleText: '', 9 navigationBarTitleText: '',
10 - // navigationBarBackgroundColor: '#fb923c' 10 + // navigationBarBackgroundColor: '#FFA135'
11 } 11 }
......
...@@ -332,7 +332,7 @@ import { addVehicleAPI, editVehicleAPI, getVehicleDetailAPI } from '@/api/car'; ...@@ -332,7 +332,7 @@ import { addVehicleAPI, editVehicleAPI, getVehicleDetailAPI } from '@/api/car';
332 import { getSchoolsAPI, getBrandsModelsAPI } from '@/api/other'; 332 import { getSchoolsAPI, getBrandsModelsAPI } from '@/api/other';
333 333
334 const themeVars = ref({ 334 const themeVars = ref({
335 - navbarBackground: '#fb923c', 335 + navbarBackground: '#FFA135',
336 navbarColor: '#ffffff', 336 navbarColor: '#ffffff',
337 }) 337 })
338 338
......