hookehuyr

fix 细节调整

1 <!-- 1 <!--
2 * @Date: 2023-12-14 10:04:23 2 * @Date: 2023-12-14 10:04:23
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-28 13:30:44 4 + * @LastEditTime: 2023-12-28 15:09:15
5 * @FilePath: /meihuaApp/src/components/calendarSelect.vue 5 * @FilePath: /meihuaApp/src/components/calendarSelect.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
10 <nut-row gutter="10"> 10 <nut-row gutter="10">
11 <nut-col span="9"> 11 <nut-col span="9">
12 <view style="color: #7D7C7C; font-size: 0.8rem;">入住日期</view> 12 <view style="color: #7D7C7C; font-size: 0.8rem;">入住日期</view>
13 - <view v-if="state.checkinDate" style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">{{ state.checkinDate }} {{ getDayOfWeek(state.checkinDate) }}</view> 13 + <view v-if="state.checkinDate" style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">{{ state.checkinDate }} {{ getDayOfWeek(state.checkinDate) }}</view>
14 - <view v-else style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">请选择入住日期</view> 14 + <view v-else style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">请选择入住日期</view>
15 </nut-col> 15 </nut-col>
16 <nut-col span="5"> 16 <nut-col span="5">
17 <view v-if="state.checkinDate && state.checkoutDate" style="color: #6A4925; margin-top: 15%; font-size: 0.8rem; text-align: center; background-color: #fff; padding: 0.25rem 0; border-radius: 0.5rem;"> 17 <view v-if="state.checkinDate && state.checkoutDate" style="color: #6A4925; margin-top: 15%; font-size: 0.8rem; text-align: center; background-color: #fff; padding: 0.25rem 0; border-radius: 0.5rem;">
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
23 </nut-col> 23 </nut-col>
24 <nut-col span="9" style="text-align: right;"> 24 <nut-col span="9" style="text-align: right;">
25 <view style="color: #7D7C7C; font-size: 0.8rem;">退房日期</view> 25 <view style="color: #7D7C7C; font-size: 0.8rem;">退房日期</view>
26 - <view v-if="state.checkoutDate" style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">{{ state.checkoutDate }} {{ getDayOfWeek(state.checkoutDate) }}</view> 26 + <view v-if="state.checkoutDate" style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">{{ state.checkoutDate }} {{ getDayOfWeek(state.checkoutDate) }}</view>
27 - <view v-else style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">请选择退房日期</view> 27 + <view v-else style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">请选择退房日期</view>
28 </nut-col> 28 </nut-col>
29 </nut-row> 29 </nut-row>
30 </view> 30 </view>
......
...@@ -561,7 +561,7 @@ page { ...@@ -561,7 +561,7 @@ page {
561 } 561 }
562 .check-in-text { 562 .check-in-text {
563 color: #7d7c7c; 563 color: #7d7c7c;
564 - font-size: 3.5vw;; 564 + font-size: 3.5vw;
565 } 565 }
566 .check-in-info { 566 .check-in-info {
567 color: #7d7c7c; 567 color: #7d7c7c;
......
1 <!-- 1 <!--
2 * @Date: 2023-12-13 11:13:13 2 * @Date: 2023-12-13 11:13:13
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-28 13:40:29 4 + * @LastEditTime: 2023-12-28 15:38:53
5 * @FilePath: /meihuaApp/src/pages/my/index.vue 5 * @FilePath: /meihuaApp/src/pages/my/index.vue
6 * @Description: 我的页面 6 * @Description: 我的页面
7 --> 7 -->
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
31 <view v-if="index === order_list.length-1" style="height: 2rem;"></view> 31 <view v-if="index === order_list.length-1" style="height: 2rem;"></view>
32 </view> 32 </view>
33 </scroll-view> 33 </scroll-view>
34 - <nut-empty v-else image="https://static-ftcms.jd.com/p/files/61a9e3313985005b3958672e.png" description="暂无数据" ></nut-empty> 34 + <nut-empty v-else image="https://cdn.ipadbiz.cn/meihua/no_order.png" description="暂无订单数据" ></nut-empty>
35 </view> 35 </view>
36 </view> 36 </view>
37 <nav-bar activated="my" /> 37 <nav-bar activated="my" />
......