主题色
4
app.json
@ -30,8 +30,8 @@
|
||||
"navigationBarBackgroundColor": "#ffffff"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#999999",
|
||||
"selectedColor": "#4285FF",
|
||||
"color": "#222222",
|
||||
"selectedColor": "#FFC300",
|
||||
"backgroundColor": "#ffffff",
|
||||
"borderStyle": "white",
|
||||
"list": [
|
||||
|
||||
6
app.wxss
@ -90,7 +90,7 @@ radio{
|
||||
}
|
||||
radio .wx-radio-input{
|
||||
border-radius: 50%;
|
||||
border-color: #1A4DEB;
|
||||
border-color:var(--main-color);
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
@ -100,7 +100,7 @@ radio .wx-radio-input{
|
||||
}
|
||||
radio .wx-radio-input.wx-radio-input-checked{
|
||||
background-color:transparent;
|
||||
border-color: #1A4DEB;
|
||||
border-color: var(--main-color);
|
||||
}
|
||||
radio .wx-radio-input.wx-radio-input-checked::before{
|
||||
content: '';
|
||||
@ -109,7 +109,7 @@ radio .wx-radio-input.wx-radio-input-checked::before{
|
||||
height:22rpx;
|
||||
left:4rpx;top:4rpx;
|
||||
border-radius: 50%;
|
||||
background: #1A4DEB;
|
||||
background: var(--main-color);
|
||||
transform: none;
|
||||
-webkit-transform:none
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 903 B After Width: | Height: | Size: 767 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 986 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 944 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 565 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1019 B |
@ -7,7 +7,7 @@
|
||||
border: 1rpx solid #fff;
|
||||
}
|
||||
.community-list .item.current{
|
||||
border-color: #1A4DEB;
|
||||
border-color: var(--main-color);
|
||||
}
|
||||
.community-list .item .title{
|
||||
font-weight: 600rpx;
|
||||
|
||||
@ -112,7 +112,7 @@
|
||||
font-weight: 500;
|
||||
}
|
||||
.promotion-panel .text .title .spec{
|
||||
color: #1A4DEB;
|
||||
color:var(--main-color);
|
||||
}
|
||||
|
||||
.promotion-panel .text .sub-title{
|
||||
|
||||
@ -127,8 +127,6 @@
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.bottom-bar .button2{
|
||||
color: #1A4DEB;
|
||||
border: 1rpx solid #1A4DEB;
|
||||
font-size: 32rpx;
|
||||
margin-left:30rpx;
|
||||
}
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
}
|
||||
.order-list .head .icon-con{
|
||||
padding: 10rpx;
|
||||
background-color: #1A4DEB;
|
||||
background-color: var(--main-color);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@ -14,7 +14,9 @@ Page({
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
back(){
|
||||
wx.navigateBack();
|
||||
},
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
"usingComponents": {},
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
@ -1,9 +1,9 @@
|
||||
<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="prd-indo">
|
||||
<label class="name">【洗吹】精致造型</label>
|
||||
<label class="money">9.9</label>
|
||||
</view>
|
||||
<button class="button" size="mini">完成</button>
|
||||
<button class="button" size="mini" bind:tap="back">完成</button>
|
||||
</view>
|
||||
@ -4,7 +4,7 @@
|
||||
height: 100%;
|
||||
width:100%;
|
||||
position: absolute;
|
||||
padding-top:150rpx;
|
||||
padding-top:300rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.success .msg{
|
||||
|
||||