diff --git a/pages/index/index.vue b/pages/index/index.vue index e8f53c8..8092b7a 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -93,17 +93,17 @@ -
  • 租金 {{ state.priceData?.price ? `¥ ${state.priceData?.price}` : '--' - }} + }} + +
  • +
  • + 开始时间 + {{ dayjs(state.startDate).format("YYYY/MM/DD") }} +
  • @@ -428,16 +428,18 @@ - @@ -533,7 +535,7 @@ const showCalendar = () => { calendars.value.open(); }; const calendarConfirm = (e) => { - const fullDate = dayjs(e.fulldate); // 保持 dayjs 对象 + const fullDate = dayjs(e[0]); // 保持 dayjs 对象 if (state.value.zhuangxiuzhong) { const limitDate = dayjs(state.value.lockData.preSaleTime); @@ -939,13 +941,17 @@ const getSiteDetail = () => { item.distanceNumber = number; }); list.sort((a, b) => a.distanceNumber - b.distanceNumber); + // 优先冼村店 + const xiancundian = list.find(item => item.id == "2030892603720994816") if (list[0]?.id) { - state.value.siteId = list[0]?.id + state.value.siteId =xiancundian?xiancundian.id:list[0]?.id reset(); getUnitTypeBySiteId(); } } else { - state.value.siteId = list[0]?.id + // 优先冼村店 + const xiancundian = list.find(item => item.id == "2030892603720994816") + state.value.siteId = xiancundian?xiancundian.id:list[0]?.id reset(); getUnitTypeBySiteId(); } @@ -1822,12 +1828,12 @@ function changeMove(event) { .bottom { display: flex; image { - margin-top: 4rpx; } .address { word-wrap: break-word; word-break: break-all; flex: 1; + line-height: 32rpx; } } } diff --git a/uni_modules/uv-calendar/components/uv-calendar/header.vue b/uni_modules/uv-calendar/components/uv-calendar/header.vue index 25651fe..950d6e1 100644 --- a/uni_modules/uv-calendar/components/uv-calendar/header.vue +++ b/uni_modules/uv-calendar/components/uv-calendar/header.vue @@ -1,5 +1,5 @@ @@ -71,9 +71,9 @@ padding-bottom: 4px; &__title { - font-size: 16px; + font-size: 36rpx; + font-weight: bold; color: $uv-main-color; - text-align: center; height: 42px; line-height: 42px; font-weight: bold; @@ -91,6 +91,7 @@ &__weekdays { @include flex; justify-content: space-between; + font-weight: 600; &__weekday { font-size: 13px; diff --git a/uni_modules/uv-calendar/components/uv-calendar/month.vue b/uni_modules/uv-calendar/components/uv-calendar/month.vue index 1a649bc..126a90f 100644 --- a/uni_modules/uv-calendar/components/uv-calendar/month.vue +++ b/uni_modules/uv-calendar/components/uv-calendar/month.vue @@ -481,11 +481,12 @@ .uv-calendar-month { &__title { - font-size: 14px; + font-size: 28rpx; line-height: 42px; height: 42px; color: $uv-main-color; - text-align: center; + // text-align: center; + padding-left: 20rpx; font-weight: bold; } @@ -493,6 +494,7 @@ position: relative; @include flex; flex-wrap: wrap; + font-weight: 600; &__month-mark-wrapper { position: absolute; diff --git a/uni_modules/uv-calendar/components/uv-calendar/uv-calendar.vue b/uni_modules/uv-calendar/components/uv-calendar/uv-calendar.vue index 626e833..bb18587 100644 --- a/uni_modules/uv-calendar/components/uv-calendar/uv-calendar.vue +++ b/uni_modules/uv-calendar/components/uv-calendar/uv-calendar.vue @@ -3,9 +3,9 @@ ref="calendarPopup" mode="bottom" closeable - :round="round" :closeOnClickOverlay="closeOnClickOverlay" @change="popupChange" + width="750rpx" zIndex="999" round="24px" > diff --git a/uni_modules/uv-popup/components/uv-popup/uv-popup.vue b/uni_modules/uv-popup/components/uv-popup/uv-popup.vue index a63ff9d..d01d198 100644 --- a/uni_modules/uv-popup/components/uv-popup/uv-popup.vue +++ b/uni_modules/uv-popup/components/uv-popup/uv-popup.vue @@ -45,8 +45,8 @@ > @@ -499,7 +499,7 @@ } &__close { position: absolute; - + margin-top: 12rpx; &--hover { opacity: 0.4; }