hookehuyr

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

/*
* @Date: 2025-06-28 10:33:00
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-04 16:18:21
* @LastEditTime: 2025-07-15 15:42:47
* @FilePath: /jgdl/src/app.config.js
* @Description: 配置文件
*/
......@@ -37,7 +37,7 @@ export default {
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fb923c',
navigationBarBackgroundColor: '#FFA135',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'white'
},
......
......@@ -46,3 +46,7 @@ button::after {
.input-placeholder, .textarea-placeholder {
color: #9ca3af;
}
.bg-orange-400 {
background-color: #FFA135;
}
......
......@@ -12,7 +12,7 @@
<view style="font-size: 32rpx;">实付金额</view>
<view style="color: red; margin: 10rpx 0;"><text style="font-size: 50rpx;">¥</text><text style="font-size: 80rpx;">{{ price }}</text></view>
<!-- <view style="font-size: 28rpx; margin-bottom: 20rpx;">支付剩余时间 <text style="color: red;">{{ formatTime(remain_time) }}</text></view> -->
<nut-button block color="#fb923c" @tap="goToPay">立即支付</nut-button>
<nut-button block color="#FFA135" @tap="goToPay">立即支付</nut-button>
</view>
</nut-action-sheet>
</div>
......
......@@ -8,5 +8,5 @@
export default {
navigationBarTitleText: '',
enableShareAppMessage: true,
// navigationBarBackgroundColor: '#fb923c'
// navigationBarBackgroundColor: '#FFA135'
}
......
<!--
* @Date: 2025-06-28 10:33:00
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-11 11:14:57
* @LastEditTime: 2025-07-15 15:45:21
* @FilePath: /jgdl/src/pages/index/index.vue
* @Description: 捡个电驴首页
-->
......@@ -28,7 +28,7 @@
</nut-sticky>
<!-- Banner -->
<view class="px-4 pt-4" style="background: linear-gradient( 180deg, #fb923c 0%, rgba(255,203,53,0) 61%);">
<view class="px-4 pt-4" style="background: linear-gradient( 180deg, #FFA135 0%, rgba(255,203,53,0) 61%);">
<nut-swiper :init-page="0" :pagination-visible="true" pagination-color="#ffffff" auto-play="3000"
class="rounded-lg overflow-hidden" height="160">
<nut-swiper-item v-for="(image, index) in bannerImages" :key="index">
......
......@@ -516,7 +516,7 @@ onMounted(() => {
}
.bg-orange-400 {
background-color: #fb923c;
background-color: #FFA135;
}
.p-4 {
......@@ -659,7 +659,7 @@ onMounted(() => {
left: 0;
right: 0;
height: 4rpx;
background: linear-gradient(90deg, #f97316, #fb923c);
background: linear-gradient(90deg, #f97316, #FFA135);
border-radius: 2rpx;
animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
......
......@@ -112,7 +112,7 @@
left: 0;
right: 0;
height: 4rpx;
background: linear-gradient(90deg, #f97316, #fb923c);
background: linear-gradient(90deg, #f97316, #FFA135);
border-radius: 2rpx;
animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
......
......@@ -191,7 +191,7 @@ const onMyAuthCar = () => {
}
.header {
background: #fb923c;
background: #FFA135;
padding: 64rpx 0 32rpx;
position: relative;
......
......@@ -7,5 +7,5 @@
*/
export default {
navigationBarTitleText: '',
// navigationBarBackgroundColor: '#fb923c'
// navigationBarBackgroundColor: '#FFA135'
}
......
......@@ -332,7 +332,7 @@ import { addVehicleAPI, editVehicleAPI, getVehicleDetailAPI } from '@/api/car';
import { getSchoolsAPI, getBrandsModelsAPI } from '@/api/other';
const themeVars = ref({
navbarBackground: '#fb923c',
navbarBackground: '#FFA135',
navbarColor: '#ffffff',
})
......