From 9c60b488a5ab0e6ae03cf19e46a9829249f2e504 Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Fri, 15 Dec 2023 11:44:04 +0800 Subject: [PATCH] =?UTF-8?q?1.app=E5=85=BC=E5=AE=B9=E6=80=A7=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/css/page.css | 24 ++++---- components/nav-back/nav-back.vue | 2 - components/no-data/no-data.vue | 98 ++++++++++++++++---------------- 3 files changed, 61 insertions(+), 63 deletions(-) diff --git a/common/css/page.css b/common/css/page.css index 4293695e..dd43bddf 100644 --- a/common/css/page.css +++ b/common/css/page.css @@ -237,7 +237,7 @@ button:before { .pr { position: relative; -} +} .z-i { z-index: 1 !important; @@ -309,12 +309,12 @@ button:before { z-index: 2; padding: 40rpx 90rpx; background-color: #fff; - box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08); -} - + box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.08); +} + /** * 底部右侧浮动+号 - */ + */ .buttom-right-submit { position: fixed; bottom: 50rpx; @@ -329,9 +329,9 @@ button:before { /** * 兼容底部横线底部内边距 */ -.bottom-line-exclude { +.bottom-line-exclude { /* #ifndef APP */ - padding-bottom: calc(env(safe-area-inset-bottom) - 40rpx); + padding-bottom: calc(env(safe-area-inset-bottom) - 40rpx); /* #endif */ } @@ -623,10 +623,10 @@ button:before { .br-0 { border: 0 !important; box-shadow: none; -} - -.br-top-shadow { - box-shadow: 0rpx -4rpx 10rpx 0px rgba(0, 0, 0, 0.03); +} + +.br-top-shadow { + box-shadow: 0rpx -4rpx 10rpx 0px rgba(0, 0, 0, 0.03); } /** @@ -968,7 +968,7 @@ button[disabled].bg-grey { border-radius: 4rpx; border: 2rpx solid #FFCAC0; color: #FFCAC0; - padding: 0 12rpx; + padding: 0 12rpx; line-height: 40rpx; } diff --git a/components/nav-back/nav-back.vue b/components/nav-back/nav-back.vue index 27c7a5e3..0b4d8e43 100644 --- a/components/nav-back/nav-back.vue +++ b/components/nav-back/nav-back.vue @@ -96,8 +96,6 @@ diff --git a/components/no-data/no-data.vue b/components/no-data/no-data.vue index 7ca86060..ea13184d 100644 --- a/components/no-data/no-data.vue +++ b/components/no-data/no-data.vue @@ -1,30 +1,30 @@ @@ -35,7 +35,7 @@ return { theme_view: app.globalData.get_theme_value_view(), static_dir: '/static/images/common/', - title: app.globalData.get_application_title(), + title: app.globalData.get_application_title(), network_type_value: 0, }; }, @@ -52,32 +52,32 @@ propUrl: { type: String, default: '', - }, - propBackBtn: { - type: Boolean, - default: true, }, - }, - // 页面被展示 - created: function () { - self = this; - uni.getNetworkType({ - success: function (res) { - self.network_type_value = res.networkType; - } - }); + propBackBtn: { + type: Boolean, + default: true, + }, }, - methods: { - // 返回事件 - back_event(e) { - app.globalData.page_back_prev_event(); - } + // 页面被展示 + created: function () { + self = this; + uni.getNetworkType({ + success: function (res) { + self.network_type_value = res.networkType; + } + }); + }, + methods: { + // 返回事件 + back_event(e) { + app.globalData.page_back_prev_event(); + } }, }; -