hookehuyr

fix 细节调整

<!--
* @Date: 2023-12-14 10:04:23
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-12-28 13:30:44
* @LastEditTime: 2023-12-28 15:09:15
* @FilePath: /meihuaApp/src/components/calendarSelect.vue
* @Description: 文件描述
-->
......@@ -10,8 +10,8 @@
<nut-row gutter="10">
<nut-col span="9">
<view style="color: #7D7C7C; font-size: 0.8rem;">入住日期</view>
<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>
<view v-else style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">请选择入住日期</view>
<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>
<view v-else style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">请选择入住日期</view>
</nut-col>
<nut-col span="5">
<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 @@
</nut-col>
<nut-col span="9" style="text-align: right;">
<view style="color: #7D7C7C; font-size: 0.8rem;">退房日期</view>
<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>
<view v-else style="color: #6A4925; font-size: 0.85rem; font-weight: bold; margin-top: 0.1rem;">请选择退房日期</view>
<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>
<view v-else style="color: #6A4925; font-size: 3.5vw; font-weight: bold; margin-top: 0.1rem;">请选择退房日期</view>
</nut-col>
</nut-row>
</view>
......
......@@ -561,7 +561,7 @@ page {
}
.check-in-text {
color: #7d7c7c;
font-size: 3.5vw;;
font-size: 3.5vw;
}
.check-in-info {
color: #7d7c7c;
......
<!--
* @Date: 2023-12-13 11:13:13
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2023-12-28 13:40:29
* @LastEditTime: 2023-12-28 15:38:53
* @FilePath: /meihuaApp/src/pages/my/index.vue
* @Description: 我的页面
-->
......@@ -31,7 +31,7 @@
<view v-if="index === order_list.length-1" style="height: 2rem;"></view>
</view>
</scroll-view>
<nut-empty v-else image="https://static-ftcms.jd.com/p/files/61a9e3313985005b3958672e.png" description="暂无数据" ></nut-empty>
<nut-empty v-else image="https://cdn.ipadbiz.cn/meihua/no_order.png" description="暂无订单数据" ></nut-empty>
</view>
</view>
<nav-bar activated="my" />
......