主题色

This commit is contained in:
2025-02-14 01:51:57 +08:00
parent ccd5d7f9ef
commit cc5add80cd
19 changed files with 16 additions and 15 deletions

View File

@ -30,8 +30,8 @@
"navigationBarBackgroundColor": "#ffffff" "navigationBarBackgroundColor": "#ffffff"
}, },
"tabBar": { "tabBar": {
"color": "#999999", "color": "#222222",
"selectedColor": "#4285FF", "selectedColor": "#FFC300",
"backgroundColor": "#ffffff", "backgroundColor": "#ffffff",
"borderStyle": "white", "borderStyle": "white",
"list": [ "list": [

View File

@ -90,7 +90,7 @@ radio{
} }
radio .wx-radio-input{ radio .wx-radio-input{
border-radius: 50%; border-radius: 50%;
border-color: #1A4DEB; border-color:var(--main-color);
box-sizing: border-box; box-sizing: border-box;
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -100,7 +100,7 @@ radio .wx-radio-input{
} }
radio .wx-radio-input.wx-radio-input-checked{ radio .wx-radio-input.wx-radio-input-checked{
background-color:transparent; background-color:transparent;
border-color: #1A4DEB; border-color: var(--main-color);
} }
radio .wx-radio-input.wx-radio-input-checked::before{ radio .wx-radio-input.wx-radio-input-checked::before{
content: ''; content: '';
@ -109,7 +109,7 @@ radio .wx-radio-input.wx-radio-input-checked::before{
height:22rpx; height:22rpx;
left:4rpx;top:4rpx; left:4rpx;top:4rpx;
border-radius: 50%; border-radius: 50%;
background: #1A4DEB; background: var(--main-color);
transform: none; transform: none;
-webkit-transform:none -webkit-transform:none
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 903 B

After

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 944 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 621 B

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1019 B

View File

@ -7,7 +7,7 @@
border: 1rpx solid #fff; border: 1rpx solid #fff;
} }
.community-list .item.current{ .community-list .item.current{
border-color: #1A4DEB; border-color: var(--main-color);
} }
.community-list .item .title{ .community-list .item .title{
font-weight: 600rpx; font-weight: 600rpx;

View File

@ -112,7 +112,7 @@
font-weight: 500; font-weight: 500;
} }
.promotion-panel .text .title .spec{ .promotion-panel .text .title .spec{
color: #1A4DEB; color:var(--main-color);
} }
.promotion-panel .text .sub-title{ .promotion-panel .text .sub-title{

View File

@ -127,8 +127,6 @@
font-size: 32rpx; font-size: 32rpx;
} }
.bottom-bar .button2{ .bottom-bar .button2{
color: #1A4DEB;
border: 1rpx solid #1A4DEB;
font-size: 32rpx; font-size: 32rpx;
margin-left:30rpx; margin-left:30rpx;
} }

View File

@ -29,7 +29,7 @@
} }
.order-list .head .icon-con{ .order-list .head .icon-con{
padding: 10rpx; padding: 10rpx;
background-color: #1A4DEB; background-color: var(--main-color);
border-radius: 50%; border-radius: 50%;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -14,7 +14,9 @@ Page({
onLoad(options) { onLoad(options) {
}, },
back(){
wx.navigateBack();
},
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
*/ */

View File

@ -1,3 +1,4 @@
{ {
"usingComponents": {} "usingComponents": {},
"navigationStyle": "custom"
} }

View File

@ -1,9 +1,9 @@
<view class="success"> <view class="success">
<icon class="icon" type="success" size="120rpx" color="#1A4DEB"/> <icon class="icon" type="success" size="120rpx" color="#FEC400"/>
<view class="msg">扫码核销成功</view> <view class="msg">扫码核销成功</view>
<view class="prd-indo"> <view class="prd-indo">
<label class="name">【洗吹】精致造型</label> <label class="name">【洗吹】精致造型</label>
<label class="money">9.9</label> <label class="money">9.9</label>
</view> </view>
<button class="button" size="mini">完成</button> <button class="button" size="mini" bind:tap="back">完成</button>
</view> </view>

View File

@ -4,7 +4,7 @@
height: 100%; height: 100%;
width:100%; width:100%;
position: absolute; position: absolute;
padding-top:150rpx; padding-top:300rpx;
box-sizing: border-box; box-sizing: border-box;
} }
.success .msg{ .success .msg{