hookehuyr

fix

<!--
* @Date: 2024-01-15 13:35:51
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-26 15:53:13
* @LastEditTime: 2024-01-26 18:11:02
* @FilePath: /xysBooking/src/views/booking.vue
* @Description: 预约页面
-->
......@@ -52,7 +52,7 @@
<van-icon v-if="checked_time !== index" :name="icon_select1" />&nbsp;
<van-icon v-else :name="icon_select2" />&nbsp;
{{ item.begin_time }}-{{ item.end_time }}
&nbsp;&nbsp;<span style="color: #A67939;">¥&nbsp;{{ item.price }}</span>
&nbsp;&nbsp;<span class="price">¥&nbsp;{{ item.price }}</span>
</div>
<div class="right">
<span v-if="item.rest_qty">余量:{{ item.rest_qty }}</span>
......@@ -412,6 +412,9 @@ const nextBtn = () => {
display: flex;
align-items: center;
color: #1E1E1E;
.price {
color:#A67939;
}
}
.right {
color: #A67939;
......@@ -420,6 +423,9 @@ const nextBtn = () => {
background-color: #E0E0E0;
.left {
color: #C7C7C7;
.price {
color:#C7C7C7;
}
}
.right {
color: #C7C7C7;
......