hookehuyr

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

......@@ -37,7 +37,7 @@ export default {
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#FFA135',
navigationBarBackgroundColor: '#fb923c',
navigationBarTitleText: 'WeChat',
navigationBarTextStyle: 'white'
},
......
......@@ -48,5 +48,5 @@ button::after {
}
.bg-orange-400 {
background-color: #FFA135;
background-color: #fb923c;
}
......
<!--
* @Date: 2023-12-20 14:11:11
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-15 15:39:33
* @LastEditTime: 2025-07-15 15:56:28
* @FilePath: /jgdl/src/components/payCard.vue
* @Description: 文件描述
-->
......@@ -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="#FFA135" @tap="goToPay">立即支付</nut-button>
<nut-button block color="#fb923c" @tap="goToPay">立即支付</nut-button>
</view>
</nut-action-sheet>
</div>
......
......@@ -19,7 +19,7 @@
<!-- 我要认证按钮 -->
<view class="px-16 mt-5">
<nut-button color="#FFA135" size="large" block @click="handleAuth" class="auth-button">
<nut-button color="#fb923c" size="large" block @click="handleAuth" class="auth-button">
<view class="flex items-center justify-center">
<Check class="mr-2" size="20" color="#ffffff" />
<text class="text-white font-medium">我要认证</text>
......
......@@ -8,5 +8,5 @@
export default {
navigationBarTitleText: '',
enableShareAppMessage: true,
// navigationBarBackgroundColor: '#FFA135'
// navigationBarBackgroundColor: '#fb923c'
}
......
......@@ -28,7 +28,7 @@
</nut-sticky>
<!-- Banner -->
<view class="px-4 pt-4" style="background: linear-gradient( 180deg, #FFA135 0%, rgba(255,203,53,0) 61%);">
<view class="px-4 pt-4" style="background: linear-gradient( 180deg, #fb923c 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: #FFA135;
background-color: #fb923c;
}
.p-4 {
......@@ -659,7 +659,7 @@ onMounted(() => {
left: 0;
right: 0;
height: 4rpx;
background: linear-gradient(90deg, #f97316, #FFA135);
background: linear-gradient(90deg, #f97316, #fb923c);
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, #FFA135);
background: linear-gradient(90deg, #f97316, #fb923c);
border-radius: 2rpx;
animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
......
......@@ -191,7 +191,7 @@ const onMyAuthCar = () => {
}
.header {
background: #FFA135;
background: #fb923c;
padding: 64rpx 0 32rpx;
position: relative;
......
......@@ -7,5 +7,5 @@
*/
export default {
navigationBarTitleText: '',
// navigationBarBackgroundColor: '#FFA135'
// navigationBarBackgroundColor: '#fb923c'
}
......
......@@ -249,10 +249,10 @@
<!-- 底部按钮 -->
<view class="bottom-actions">
<nut-button v-if="!isAuthMode" color="#FFA135" size="large" block @click="onPublish">
<nut-button v-if="!isAuthMode" color="#fb923c" size="large" block @click="onPublish">
{{ isEditMode ? '保存修改' : '确认发布' }}
</nut-button>
<nut-button v-else color="#FFA135" size="large" block @click="onPublish">
<nut-button v-else color="#fb923c" size="large" block @click="onPublish">
确认发布
</nut-button>
</view>
......@@ -332,7 +332,7 @@ import { addVehicleAPI, editVehicleAPI, getVehicleDetailAPI } from '@/api/car';
import { getSchoolsAPI, getBrandsModelsAPI } from '@/api/other';
const themeVars = ref({
navbarBackground: '#FFA135',
navbarBackground: '#fb923c',
navbarColor: '#ffffff',
})
......