hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2024-01-15 13:35:51 2 * @Date: 2024-01-15 13:35:51
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-01-26 15:53:13 4 + * @LastEditTime: 2024-01-26 18:11:02
5 * @FilePath: /xysBooking/src/views/booking.vue 5 * @FilePath: /xysBooking/src/views/booking.vue
6 * @Description: 预约页面 6 * @Description: 预约页面
7 --> 7 -->
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 <van-icon v-if="checked_time !== index" :name="icon_select1" />&nbsp; 52 <van-icon v-if="checked_time !== index" :name="icon_select1" />&nbsp;
53 <van-icon v-else :name="icon_select2" />&nbsp; 53 <van-icon v-else :name="icon_select2" />&nbsp;
54 {{ item.begin_time }}-{{ item.end_time }} 54 {{ item.begin_time }}-{{ item.end_time }}
55 - &nbsp;&nbsp;<span style="color: #A67939;">¥&nbsp;{{ item.price }}</span> 55 + &nbsp;&nbsp;<span class="price">¥&nbsp;{{ item.price }}</span>
56 </div> 56 </div>
57 <div class="right"> 57 <div class="right">
58 <span v-if="item.rest_qty">余量:{{ item.rest_qty }}</span> 58 <span v-if="item.rest_qty">余量:{{ item.rest_qty }}</span>
...@@ -412,6 +412,9 @@ const nextBtn = () => { ...@@ -412,6 +412,9 @@ const nextBtn = () => {
412 display: flex; 412 display: flex;
413 align-items: center; 413 align-items: center;
414 color: #1E1E1E; 414 color: #1E1E1E;
415 + .price {
416 + color:#A67939;
417 + }
415 } 418 }
416 .right { 419 .right {
417 color: #A67939; 420 color: #A67939;
...@@ -420,6 +423,9 @@ const nextBtn = () => { ...@@ -420,6 +423,9 @@ const nextBtn = () => {
420 background-color: #E0E0E0; 423 background-color: #E0E0E0;
421 .left { 424 .left {
422 color: #C7C7C7; 425 color: #C7C7C7;
426 + .price {
427 + color:#C7C7C7;
428 + }
423 } 429 }
424 .right { 430 .right {
425 color: #C7C7C7; 431 color: #C7C7C7;
......