diff --git a/components/myModal.vue b/components/myModal.vue index ea2154a..8df7b1b 100644 --- a/components/myModal.vue +++ b/components/myModal.vue @@ -11,7 +11,7 @@ - + {{ props.content }} diff --git a/components/uv-pickerself/components/uv-picker/uv-picker.vue b/components/uv-pickerself/components/uv-picker/uv-picker.vue index bfc2050..b300987 100644 --- a/components/uv-pickerself/components/uv-picker/uv-picker.vue +++ b/components/uv-pickerself/components/uv-picker/uv-picker.vue @@ -7,10 +7,10 @@ @change="popupChange" > - - + {{ title }} + + + + + {{ confirmText }} + + @@ -293,6 +303,21 @@ export default { .uv-picker { position: relative; + .title{ + display: flex; + justify-content: space-between; + align-items: center; + flex-direction: row; + padding: 36rpx; + font-size: 36rpx; + font-weight: 600; + } + .btn{ + :deep(.uv-button){ + width: 470rpx; + } + } + &__view { &__column { diff --git a/locale/en.json b/locale/en.json index 9403d1c..8002909 100644 --- a/locale/en.json +++ b/locale/en.json @@ -40,6 +40,7 @@ "common.notRented": "Not rented", "common.rented": "Rented", "common.locked": "Locked", + "common.loading": "Loading", "locale.auto": "System", "locale.en": "English", "locale.zh-hans": "简体中文", diff --git a/locale/zh-Hans.json b/locale/zh-Hans.json index 28cf464..38117d9 100644 --- a/locale/zh-Hans.json +++ b/locale/zh-Hans.json @@ -40,6 +40,7 @@ "common.notRented": "未租", "common.rented": "已租", "common.locked": "鎖定", + "common.loading": "加载中", "locale.auto": "系统", "locale.en": "English", "locale.zh-hans": "简体中文", diff --git a/pages/index/index.vue b/pages/index/index.vue index abf3938..90d496e 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -73,8 +73,10 @@ - - {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '¥--' + + {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '¥--' }} - 明细 + ¥{{ state.priceData.leaseOriginalPrice }}明细 @@ -158,7 +160,7 @@ - 仓型选择 + 体积选择 @@ -320,11 +322,14 @@ 优惠信息 -¥ {{ state.priceData.favorable }} + + 租期优惠({{state.month}}个月长租)-¥ {{ state.priceData.leaseDiscount }} + - {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '--' + {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '--' }} - 明细 + ¥{{ state.priceData.leaseOriginalPrice }}明细 @@ -1081,12 +1086,21 @@ function changeMove(event) { display: flex; align-items: center; font-size: 38rpx; + .price { + &.overMaxFont{ + font-size: 32rpx; + } + } + .detail { display: flex; align-items: center; - margin-left: 40rpx; + margin-left: 16rpx; color: #FFFFFF; font-size: 28rpx; + .overMaxFont{ + font-size: 24rpx; + } image { margin-left: 10rpx; transform: rotate(180deg); @@ -1356,12 +1370,20 @@ function changeMove(event) { display: flex; align-items: center; font-size: 38rpx; + .price { + &.overMaxFont{ + font-size: 32rpx; + } + } .detail { display: flex; align-items: center; - margin-left: 40rpx; color: #FFFFFF; + margin-left: 16rpx; font-size: 28rpx; + .overMaxFont{ + font-size: 24rpx; + } image{ margin-left: 10rpx; } @@ -1489,7 +1511,7 @@ function changeMove(event) { .top { display: flex; justify-content: space-between; - // align-items: center; + align-items: center; margin-bottom: 20rpx; image { diff --git a/pages/site/index.vue b/pages/site/index.vue index c46e0b6..017a557 100644 --- a/pages/site/index.vue +++ b/pages/site/index.vue @@ -42,7 +42,7 @@ - + 返回主页 diff --git a/pages/unlock/index.vue b/pages/unlock/index.vue index a442c11..4814abe 100644 --- a/pages/unlock/index.vue +++ b/pages/unlock/index.vue @@ -1,11 +1,11 @@ @@ -140,7 +140,8 @@ import { navigateBack } from '@/utils/common.js'; import navBar from "@/components/navBar.vue"; import { isShichang } from '@/config/index.js' import myUpload from "@/components/myUpload.vue"; -import AgreementCheck from "@/components/agreementCheck.vue"; +// import AgreementCheck from "@/components/agreementCheck.vue"; +import uvPickerSlef from "@/components/uv-pickerself/components/uv-picker/uv-picker.vue"; // 主题色配置 import { useMainStore } from "@/store/index.js"; import myModal from "@/components/myModal.vue";