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 @@ -