diff --git a/common/css/common.css b/common/css/common.css
index 43c9ade1..78089aaf 100644
--- a/common/css/common.css
+++ b/common/css/common.css
@@ -247,7 +247,8 @@ button[disabled]..button-main {
left: 0;
bottom: 0;
border: none;
- width: 100%;
+ width: 100%;
+ box-sizing: border-box;
}
/**
diff --git a/common/css/page.css b/common/css/page.css
index 1e23cbad..d9d27b42 100644
--- a/common/css/page.css
+++ b/common/css/page.css
@@ -49,10 +49,10 @@
margin-bottom: 20rpx;
border-radius: 20rpx;
}
-.form-container .form-gorup:last-child {
+.form-container .form-gorup-submit {
padding: 20rpx 0;
}
-.form-container .form-gorup:not(:last-child) {
+.form-container .form-gorup:not(.form-gorup-submit) {
background: #fff;
}
.form-container .form-gorup-title {
diff --git a/pages/buy/buy.css b/pages/buy/buy.css
index 29fc15fc..ae07647e 100644
--- a/pages/buy/buy.css
+++ b/pages/buy/buy.css
@@ -75,23 +75,19 @@
bottom: 0;
}
.buy-nav,
-.nav-base,
-.nav-submit button {
- height: 100rpx;
-}
-.nav-base,
-.nav-submit button {
+.nav-base {
+ height: 100rpx;
line-height: 100rpx;
}
+.nav-submit button {
+ height: 72rpx;
+ line-height: 72rpx;
+}
.nav-base {
width: calc(60% - 20rpx);
- padding: 0 10rpx;
}
.nav-submit {
- width: 40%;
-}
-.nav-submit button {
- border-radius: 0;
+ width: calc(40% - 40rpx);
}
/**
diff --git a/pages/buy/buy.vue b/pages/buy/buy.vue
index 4db7abfb..4ee5aab9 100644
--- a/pages/buy/buy.vue
+++ b/pages/buy/buy.vue
@@ -120,13 +120,13 @@
-
-
+
+
合计:
{{currency_symbol}}{{total_price}}
-
-
+
+
diff --git a/pages/cart/cart.css b/pages/cart/cart.css
index daea7335..9a55bec9 100644
--- a/pages/cart/cart.css
+++ b/pages/cart/cart.css
@@ -100,20 +100,19 @@
z-index: 2;
}
.buy-nav,
-.nav-base,
-.nav-submit button {
- height: 100rpx;
-}
-.nav-base,
-.nav-submit button {
+.nav-base {
+ height: 100rpx;
line-height: 100rpx;
}
+.nav-submit button {
+ height: 72rpx;
+ line-height: 72rpx;
+}
.nav-base {
width: calc(75% - 20rpx);
- padding: 0 10rpx;
}
.nav-submit {
- width: 25%;
+ width: calc(25% - 40rpx);
}
.nav-submit button {
border-radius: 0;
diff --git a/pages/cart/cart.vue b/pages/cart/cart.vue
index 12206f6c..20d66cd0 100644
--- a/pages/cart/cart.vue
+++ b/pages/cart/cart.vue
@@ -56,20 +56,18 @@
-
-
-
-
-
+
+
+
-
-
+
+
全选
@@ -80,10 +78,10 @@
合计:
-
-
+
+
-
+
diff --git a/pages/extraction-address/extraction-address.css b/pages/extraction-address/extraction-address.css
index 0138b278..5450138a 100644
--- a/pages/extraction-address/extraction-address.css
+++ b/pages/extraction-address/extraction-address.css
@@ -14,7 +14,6 @@
width: calc(100% - 40rpx);
}
.operation button {
- font-size: 22rpx;
- padding: 5rpx 20rpx;
- line-height: 40rpx;
+ padding: 0 35rpx;
+ display: inline-flex;
}
\ No newline at end of file
diff --git a/pages/extraction-address/extraction-address.vue b/pages/extraction-address/extraction-address.vue
index fdd85269..a417649a 100644
--- a/pages/extraction-address/extraction-address.vue
+++ b/pages/extraction-address/extraction-address.vue
@@ -14,7 +14,7 @@
{{item.tel}}
-
+
{{item.province_name || ''}}{{item.city_name || ''}}{{item.county_name || ''}}{{item.address || ''}}
@@ -22,7 +22,7 @@
-
+
距离
{{item.distance_value}}
{{item.distance_unit}}
diff --git a/pages/user-address-save/user-address-save.css b/pages/user-address-save/user-address-save.css
new file mode 100644
index 00000000..331f8963
--- /dev/null
+++ b/pages/user-address-save/user-address-save.css
@@ -0,0 +1,38 @@
+/*
+* 表单
+*/
+.page {
+ padding-bottom: 110rpx;
+}
+.submit-fixed {
+ z-index: 2;
+}
+
+/*
+* 三级联动
+*/
+.select-address {
+ box-sizing: border-box;
+ height: 70rpx;
+ line-height: 70rpx;
+ padding: 0 10rpx;
+}
+.select-address .section {
+ width: 33.33%;
+ box-sizing: border-box;
+}
+.select-address .section:not(:first-child) {
+ padding: 0 5rpx;
+}
+
+/*
+* 身份信息
+*/
+.idcard-container {
+ background: #e6e6e6;
+}
+.idcard-container .form-upload-data .item image {
+ width: 256rpx;
+ height: 170rpx;
+ border: 1px dashed #c2c2c2;
+}
\ No newline at end of file
diff --git a/pages/user-address-save/user-address-save.vue b/pages/user-address-save/user-address-save.vue
index 1203aa41..b33b7959 100644
--- a/pages/user-address-save/user-address-save.vue
+++ b/pages/user-address-save/user-address-save.vue
@@ -1,732 +1,657 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/user-address/user-address.css b/pages/user-address/user-address.css
new file mode 100644
index 00000000..490e8655
--- /dev/null
+++ b/pages/user-address/user-address.css
@@ -0,0 +1,28 @@
+.page {
+ padding-bottom: 120rpx;
+}
+.address .item-icon {
+ width: 30rpx;
+ height: 35rpx !important;
+}
+.address-alias {
+ padding: 2rpx 10rpx;
+}
+.address .text {
+ line-height: 44rpx;
+ width: calc(100% - 40rpx);
+}
+.operation .default image {
+ width: 35rpx;
+ height: 35rpx !important;
+}
+.operation button {
+ padding: 0 35rpx;
+ display: inline-flex;
+}
+.operation .submit-items button:not(:first-child) {
+ margin-left: 20rpx;
+}
+.submit-list button {
+ width: calc(50% - 10rpx);
+}
\ No newline at end of file
diff --git a/pages/user-address/user-address.vue b/pages/user-address/user-address.vue
index d38b6d24..e01fbb0d 100644
--- a/pages/user-address/user-address.vue
+++ b/pages/user-address/user-address.vue
@@ -1,468 +1,398 @@
-
-
-
-
-
-
-
- {{item.alias}}
- {{item.name}}
- {{item.tel}}
+
+
+
+
+
+
+
+ {{item.alias}}
+ {{item.name}}
+ {{item.tel}}
+
+
+
+
+ {{item.province_name || ''}}{{item.city_name || ''}}{{item.county_name || ''}}{{item.address || ''}}
+
+
+
+
+
+
+ 设为默认地址
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
- {{item.province_name || ''}}{{item.city_name || ''}}{{item.county_name || ''}}{{item.address || ''}}
-
-
-
-
-
-
- 设为默认地址
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 加载中...
-
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/pages/user-order-comments/user-order-comments.vue b/pages/user-order-comments/user-order-comments.vue
index 2528f3bb..bccff0f5 100644
--- a/pages/user-order-comments/user-order-comments.vue
+++ b/pages/user-order-comments/user-order-comments.vue
@@ -37,8 +37,8 @@
{{anonymous_msg_list[anonymous_value]}}
-
-
+
+
diff --git a/pages/user-order/user-order.vue b/pages/user-order/user-order.vue
index 76eb6d4c..5b4c4e9d 100644
--- a/pages/user-order/user-order.vue
+++ b/pages/user-order/user-order.vue
@@ -98,7 +98,8 @@
data() {
return {
common_static_url: common_static_url,
- data_list: [],
+ data_list: [],
+ data_total: 0,
data_page_total: 0,
data_page: 1,
data_list_loding_status: 1,
@@ -121,8 +122,7 @@
nav_status_index: 0,
order_select_ids: [],
// 基础配置
- home_is_enable_order_bulk_pay: 0,
- data_total: ""
+ home_is_enable_order_bulk_pay: 0
};
},
diff --git a/pages/user-orderaftersale-detail/user-orderaftersale-detail.vue b/pages/user-orderaftersale-detail/user-orderaftersale-detail.vue
index b5cb4500..72bb0023 100644
--- a/pages/user-orderaftersale-detail/user-orderaftersale-detail.vue
+++ b/pages/user-orderaftersale-detail/user-orderaftersale-detail.vue
@@ -135,8 +135,8 @@
-
-
+
+
@@ -169,8 +169,8 @@
快递单号必填
-
-
+
+