Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
xysBooking
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-01-26 15:53:27 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cbda039c647905e6a92f2d2ac742ff6740f91a30
cbda039c
1 parent
2f3952a2
fix
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
src/views/booking.vue
src/views/booking.vue
View file @
cbda039
<!--
* @Date: 2024-01-15 13:35:51
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-26 15:
40:32
* @LastEditTime: 2024-01-26 15:
53:13
* @FilePath: /xysBooking/src/views/booking.vue
* @Description: 预约页面
-->
...
...
@@ -52,9 +52,10 @@
<van-icon v-if="checked_time !== index" :name="icon_select1" />
<van-icon v-else :name="icon_select2" />
{{ item.begin_time }}-{{ item.end_time }}
<span style="color: #A67939;">¥ {{ item.price }}</span>
</div>
<div class="right">
<span v-if="item.rest_qty">
<span style="color: red;">¥{{ item.price }}</span>
余量:{{ item.rest_qty }}</span>
<span v-if="item.rest_qty">余量:{{ item.rest_qty }}</span>
<span v-else-if="item.rest_qty === QtyStatus.INFINITY">可约</span>
<span v-else>已约满</span>
</div>
...
...
Please
register
or
login
to post a comment