|
|
@@ -57,7 +57,7 @@
|
|
|
<view class="form-label">取件时间<text class="required">*</text></view>
|
|
|
<view class="time-action" @click="openTimePicker">
|
|
|
<text>{{ pickupTime.label || '立即取件' }}</text>
|
|
|
- <zui-svg-icon icon="general-arrow-right" :width="16" :height="16" color="#333" />
|
|
|
+ <zui-svg-icon icon="general-arrow-right" :width="16" :height="16" color="#049E2C" />
|
|
|
</view>
|
|
|
</view>
|
|
|
<TimePicker ref="timePicker" @confirm="handleTimeConfirm" />
|
|
|
@@ -65,7 +65,7 @@
|
|
|
<view class="form-label">备注</view>
|
|
|
<view class="remark-action" @click="openRemarkModal">
|
|
|
<text :class="{ placeholder: !remark }">{{ remark || '请填写备注信息' }}</text>
|
|
|
- <zui-svg-icon icon="general-arrow-right" :width="16" :height="16" color="#333" />
|
|
|
+ <zui-svg-icon icon="general-arrow-right" :width="16" :height="16" color="#049E2C" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -93,7 +93,7 @@
|
|
|
</view>
|
|
|
<view class="item-right">
|
|
|
<view class="price">预估 ¥{{ item.price/100.00 }}</view>
|
|
|
- <radio :checked="selectedDelivery === item.name" :disabled="!item.isAble" color="#3385FF" style="transform: scale(0.7)"></radio>
|
|
|
+ <radio :checked="selectedDelivery === item.name" :disabled="!item.isAble" color="#049E2C" style="transform: scale(0.7)"></radio>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
@@ -601,7 +601,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.time-action {
|
|
|
- color: #3385FF;
|
|
|
+ color: #049E2C;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
font-size: 28upx;
|
|
|
@@ -613,7 +613,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.remark-action {
|
|
|
- color: #3385FF;
|
|
|
+ color: #049E2C;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
font-size: 28upx;
|
|
|
@@ -697,17 +697,17 @@ export default {
|
|
|
}
|
|
|
|
|
|
/* 列表头部 - 固定不滚动 */
|
|
|
-.list-header {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 20upx;
|
|
|
- background-color: #f0f7ff;
|
|
|
- margin: 0 20upx;
|
|
|
- margin-bottom: 0;
|
|
|
- border: 1upx solid #f0f0f0;
|
|
|
- border-radius: 12upx 12upx 0 0;
|
|
|
- flex-shrink: 0;
|
|
|
+ .list-header {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 20upx;
|
|
|
+ background-color: rgba(4, 158, 44, 0.05);
|
|
|
+ margin: 0 20upx;
|
|
|
+ margin-bottom: 0;
|
|
|
+ border: 1upx solid #f0f0f0;
|
|
|
+ border-radius: 12upx 12upx 0 0;
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
|
.header-left {
|
|
|
display: flex;
|
|
|
@@ -722,15 +722,15 @@ export default {
|
|
|
.header-title {
|
|
|
font-size: 28upx;
|
|
|
font-weight: bold;
|
|
|
- color: #3385FF;
|
|
|
+ color: #049E2C;
|
|
|
}
|
|
|
|
|
|
.load-btn {
|
|
|
padding: 8upx 20upx;
|
|
|
font-size: 28upx;
|
|
|
- color: #3385FF;
|
|
|
+ color: #049E2C;
|
|
|
background-color: white;
|
|
|
- border: 1upx solid #3385FF;
|
|
|
+ border: 1upx solid #049E2C;
|
|
|
border-radius: 20upx;
|
|
|
line-height: 1.5;
|
|
|
height: auto;
|
|
|
@@ -738,7 +738,7 @@ export default {
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
&:active {
|
|
|
- background-color: #3385FF;
|
|
|
+ background-color: #049E2C;
|
|
|
color: white;
|
|
|
}
|
|
|
|
|
|
@@ -826,7 +826,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
&.active {
|
|
|
- background-color: #f0f7ff;
|
|
|
+ background-color: rgba(4, 158, 44, 0.05);
|
|
|
}
|
|
|
|
|
|
.item-left {
|
|
|
@@ -845,7 +845,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.tag-new {
|
|
|
- background-color: #3385FF;
|
|
|
+ background-color: #049E2C;
|
|
|
color: white;
|
|
|
font-size: 20upx;
|
|
|
padding: 3upx 8upx;
|
|
|
@@ -922,7 +922,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
&.active {
|
|
|
- background-color: #f0f7ff;
|
|
|
+ background-color: rgba(4, 158, 44, 0.05);
|
|
|
}
|
|
|
|
|
|
.item-left {
|
|
|
@@ -941,7 +941,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.tag-new {
|
|
|
- background-color: #3385FF;
|
|
|
+ background-color: #049E2C;
|
|
|
color: white;
|
|
|
font-size: 20upx;
|
|
|
padding: 3upx 8upx;
|
|
|
@@ -1031,7 +1031,7 @@ export default {
|
|
|
height: 80rpx;
|
|
|
line-height: 80rpx;
|
|
|
border-radius: 40rpx;
|
|
|
- background: linear-gradient(to right, #2fa7ff, #007aff);
|
|
|
+ background: linear-gradient(to right, #049E2C, #06C547);
|
|
|
color: white;
|
|
|
font-size: 30rpx;
|
|
|
font-weight: 500;
|
|
|
@@ -1118,7 +1118,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
&.confirm-btn {
|
|
|
- color: #3385FF;
|
|
|
+ color: #049E2C;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
}
|