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.selectUnitRow?.name }})
+ 体积
+
+
{{
state.selectUnitRow?.name ? `${state.selectUnitRow?.volume}m³ ` : "请选择" }}
@@ -105,10 +107,10 @@
-
- {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '¥--'
+
+ {{ state.priceData.expense ? `¥ ${state.priceData.expense}` : '¥--'
}}
- 明细
+ ¥{{ state.priceData.leaseOriginalPrice }}明细
@@ -158,7 +160,7 @@