Showing
6 changed files
with
25 additions
and
16 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2023-06-13 13:26:46 | 2 | * @Date: 2023-06-13 13:26:46 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-18 11:11:46 | 4 | + * @LastEditTime: 2024-01-18 15:42:01 |
| 5 | * @FilePath: /xysBooking/src/App.vue | 5 | * @FilePath: /xysBooking/src/App.vue |
| 6 | * @Description: 启动页 | 6 | * @Description: 启动页 |
| 7 | --> | 7 | --> |
| ... | @@ -58,7 +58,7 @@ onMounted(async () => { | ... | @@ -58,7 +58,7 @@ onMounted(async () => { |
| 58 | html, | 58 | html, |
| 59 | body { | 59 | body { |
| 60 | width: 100%; | 60 | width: 100%; |
| 61 | -height: 100%; | 61 | +// height: 100%; |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | body { | 64 | body { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-01-16 10:06:47 | 2 | * @Date: 2024-01-16 10:06:47 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-18 10:36:53 | 4 | + * @LastEditTime: 2024-01-18 14:25:17 |
| 5 | * @FilePath: /xysBooking/src/components/qrCode.vue | 5 | * @FilePath: /xysBooking/src/components/qrCode.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -208,7 +208,7 @@ const selectUser = (index) => { | ... | @@ -208,7 +208,7 @@ const selectUser = (index) => { |
| 208 | // width: 100%; | 208 | // width: 100%; |
| 209 | // height: 100%; | 209 | // height: 100%; |
| 210 | background-color: #FFF; | 210 | background-color: #FFF; |
| 211 | - border-radius: 5px; | 211 | + border-radius: 8px; |
| 212 | box-shadow: 0rem 0rem 0.92rem 0rem rgba(106,106,106,0.27); | 212 | box-shadow: 0rem 0rem 0.92rem 0rem rgba(106,106,106,0.27); |
| 213 | .user-status { | 213 | .user-status { |
| 214 | .status { | 214 | .status { |
| ... | @@ -246,7 +246,7 @@ const selectUser = (index) => { | ... | @@ -246,7 +246,7 @@ const selectUser = (index) => { |
| 246 | .center { | 246 | .center { |
| 247 | border: 1px solid #D1D1D1; | 247 | border: 1px solid #D1D1D1; |
| 248 | border-radius: 20px; | 248 | border-radius: 20px; |
| 249 | - padding: 0.25rem; | 249 | + padding: 0.5rem; |
| 250 | position: relative; | 250 | position: relative; |
| 251 | img { | 251 | img { |
| 252 | width: 15rem; | 252 | width: 15rem; | ... | ... |
| ... | @@ -154,10 +154,14 @@ const onConfirm = ({ selectedOptions }) => { // 切换类型回调 | ... | @@ -154,10 +154,14 @@ const onConfirm = ({ selectedOptions }) => { // 切换类型回调 |
| 154 | align-items: center; | 154 | align-items: center; |
| 155 | justify-content: center; | 155 | justify-content: center; |
| 156 | .save-btn { | 156 | .save-btn { |
| 157 | + text-align: center; | ||
| 158 | + flex-grow: 1; | ||
| 157 | background-color: #A67939; | 159 | background-color: #A67939; |
| 158 | - padding: 0.8rem 10rem; | 160 | + padding: 0.8rem 0; |
| 161 | + margin: 1rem; | ||
| 159 | color: #FFF; | 162 | color: #FFF; |
| 160 | border-radius: 5px; | 163 | border-radius: 5px; |
| 164 | + font-size: 1.1rem; | ||
| 161 | } | 165 | } |
| 162 | } | 166 | } |
| 163 | } | 167 | } | ... | ... |
| ... | @@ -377,8 +377,12 @@ const nextBtn = () => { | ... | @@ -377,8 +377,12 @@ const nextBtn = () => { |
| 377 | box-shadow: 0rem -0.33rem 0.25rem 0rem rgba(0,0,0,0.12); | 377 | box-shadow: 0rem -0.33rem 0.25rem 0rem rgba(0,0,0,0.12); |
| 378 | .button { | 378 | .button { |
| 379 | color: #FFF; | 379 | color: #FFF; |
| 380 | - padding: 0.85rem 9rem; | 380 | + padding: 0.85rem 0; |
| 381 | border-radius: 8px; | 381 | border-radius: 8px; |
| 382 | + font-size: 1.1rem; | ||
| 383 | + text-align: center; | ||
| 384 | + flex-grow: 1; | ||
| 385 | + margin: 1rem; | ||
| 382 | } | 386 | } |
| 383 | } | 387 | } |
| 384 | } | 388 | } | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-01-16 13:19:23 | 2 | * @Date: 2024-01-16 13:19:23 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-16 17:14:34 | 4 | + * @LastEditTime: 2024-01-19 14:08:04 |
| 5 | * @FilePath: /xysBooking/src/views/bookingDetail.vue | 5 | * @FilePath: /xysBooking/src/views/bookingDetail.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -102,10 +102,13 @@ const cancelBooking = (item) => { | ... | @@ -102,10 +102,13 @@ const cancelBooking = (item) => { |
| 102 | font-size: 1.2rem; | 102 | font-size: 1.2rem; |
| 103 | color: #000; | 103 | color: #000; |
| 104 | .cancel-btn { | 104 | .cancel-btn { |
| 105 | + font-size: 1.1rem; | ||
| 106 | + text-align: center; | ||
| 107 | + flex-grow: 1; | ||
| 105 | background-color: #A67939; | 108 | background-color: #A67939; |
| 106 | color: #FFF; | 109 | color: #FFF; |
| 107 | - font-size: 1rem; | 110 | + padding: 0.8rem 0; |
| 108 | - padding: 0.8rem 8rem; | 111 | + margin: 1rem; |
| 109 | border-radius: 5px; | 112 | border-radius: 5px; |
| 110 | } | 113 | } |
| 111 | } | 114 | } | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-01-15 11:43:01 | 2 | * @Date: 2024-01-15 11:43:01 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-16 16:18:14 | 4 | + * @LastEditTime: 2024-01-18 18:00:44 |
| 5 | * @FilePath: /xysBooking/src/views/notice.vue | 5 | * @FilePath: /xysBooking/src/views/notice.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -13,10 +13,8 @@ | ... | @@ -13,10 +13,8 @@ |
| 13 | <p>苏州西园戒幢律寺实行实名制全预约制度,观众可提前通过线上渠道进行参观预约(系统服务时间:每日8:00-23:00) 。如未提前预约且参观当日仍有余票时,观众可在当日进行预约。如无特别说明,探索体验馆可凭预约记录入场参观,无需另行预约。</p> | 13 | <p>苏州西园戒幢律寺实行实名制全预约制度,观众可提前通过线上渠道进行参观预约(系统服务时间:每日8:00-23:00) 。如未提前预约且参观当日仍有余票时,观众可在当日进行预约。如无特别说明,探索体验馆可凭预约记录入场参观,无需另行预约。</p> |
| 14 | <p>未办理身份证的未成年人请使用其户口本上的身份证号码为其预约,参观时请携带好户口本,以便核实预约信息。60周岁以上老人、残障人士、现役军人、退役军人、军烈属、荣誉献血个人、苏博会员、文博单位工作人员、离休干部均可凭本人有效证件免预约入馆。其中60周岁以上老人、残障人士和离休干部的陪同看护人员均需提前进行实名预约。 </p> | 14 | <p>未办理身份证的未成年人请使用其户口本上的身份证号码为其预约,参观时请携带好户口本,以便核实预约信息。60周岁以上老人、残障人士、现役军人、退役军人、军烈属、荣誉献血个人、苏博会员、文博单位工作人员、离休干部均可凭本人有效证件免预约入馆。其中60周岁以上老人、残障人士和离休干部的陪同看护人员均需提前进行实名预约。 </p> |
| 15 | <p>为充分预留时间进行信息核查,保障观众顺利入馆,苏州博物馆西馆当日预约截止</p> | 15 | <p>为充分预留时间进行信息核查,保障观众顺利入馆,苏州博物馆西馆当日预约截止</p> |
| 16 | - <p>为充分预留时间进行信息核查,保障观众顺利入馆,苏州博物馆西馆当日预约截止</p> | ||
| 17 | - <p>为充分预留时间进行信息核查,保障观众顺利入馆,苏州博物馆西馆当日预约截止</p> | ||
| 18 | </div> | 16 | </div> |
| 19 | - <div style="height: 7rem;"></div> | 17 | + <div style="height: 8rem;"></div> |
| 20 | <div class="footer"> | 18 | <div class="footer"> |
| 21 | <van-checkbox-group v-model="checked" shape="square" checked-color="#A67939" style="margin-left: 1.25rem;"> | 19 | <van-checkbox-group v-model="checked" shape="square" checked-color="#A67939" style="margin-left: 1.25rem;"> |
| 22 | <van-checkbox name="1" icon-size="0.8rem"><span style="color: #A67939; font-size: 0.85rem;">我已阅读并同意以上内容</span></van-checkbox> | 20 | <van-checkbox name="1" icon-size="0.8rem"><span style="color: #A67939; font-size: 0.85rem;">我已阅读并同意以上内容</span></van-checkbox> |
| ... | @@ -58,7 +56,7 @@ const confirmBtn = () => { | ... | @@ -58,7 +56,7 @@ const confirmBtn = () => { |
| 58 | position: relative; | 56 | position: relative; |
| 59 | height: 100vh; | 57 | height: 100vh; |
| 60 | .content { | 58 | .content { |
| 61 | - margin: 1rem; | 59 | + margin: 1rem 0.5rem; |
| 62 | background-color: #FFFFFF; | 60 | background-color: #FFFFFF; |
| 63 | border-radius: 8px; | 61 | border-radius: 8px; |
| 64 | padding: 1rem; | 62 | padding: 1rem; |
| ... | @@ -72,7 +70,7 @@ const confirmBtn = () => { | ... | @@ -72,7 +70,7 @@ const confirmBtn = () => { |
| 72 | bottom: 0; | 70 | bottom: 0; |
| 73 | left: 0; | 71 | left: 0; |
| 74 | width: 100vw; | 72 | width: 100vw; |
| 75 | - height: 7rem; | 73 | + height: 8rem; |
| 76 | display: flex; | 74 | display: flex; |
| 77 | background: #FFFFFF; | 75 | background: #FFFFFF; |
| 78 | box-shadow: 0rem -0.33rem 0.25rem 0rem rgba(0,0,0,0.12); | 76 | box-shadow: 0rem -0.33rem 0.25rem 0rem rgba(0,0,0,0.12); | ... | ... |
-
Please register or login to post a comment