From 1c942e33b96a5f33578c4bd2e0ae5057b35cb180 Mon Sep 17 00:00:00 2001 From: Fox-33 <1466778434@qq.com> Date: Tue, 18 Mar 2025 17:10:56 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=86=E4=BA=AB=E8=AE=B0=E5=BD=95;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common.scss | 16 ++ components/base/tabbar.vue | 6 +- pages/index/index.vue | 47 ++-- pages/index/record.vue | 413 +++++++++++++++++++-------------- pages_order/record/articleSharing.vue | 25 +- pages_order/record/groupSharing.vue | 24 +- pages_order/record/personalSharing.vue | 26 ++- pages_order/record/videoSharing.vue | 16 +- static/image/home/bg.png | Bin 0 -> 193382 bytes static/image/record/audit.png | Bin 0 -> 5410 bytes static/image/record/delete.png | Bin 0 -> 473 bytes static/image/record/fail.png | Bin 0 -> 4602 bytes static/image/record/filter.png | Bin 0 -> 699 bytes static/image/record/pass.png | Bin 0 -> 5831 bytes static/image/record/slider.png | Bin 0 -> 578 bytes static/image/record/temp.png | Bin 0 -> 47165 bytes static/image/tabbar/home.png | Bin 929 -> 671 bytes static/image/tabbar/order-a.png | Bin 691 -> 0 bytes static/image/tabbar/order.png | Bin 736 -> 0 bytes static/image/tabbar/record-a.png | Bin 0 -> 860 bytes static/image/tabbar/record.png | Bin 0 -> 1603 bytes 21 files changed, 355 insertions(+), 218 deletions(-) create mode 100644 static/image/home/bg.png create mode 100644 static/image/record/audit.png create mode 100644 static/image/record/delete.png create mode 100644 static/image/record/fail.png create mode 100644 static/image/record/filter.png create mode 100644 static/image/record/pass.png create mode 100644 static/image/record/slider.png create mode 100644 static/image/record/temp.png delete mode 100644 static/image/tabbar/order-a.png delete mode 100644 static/image/tabbar/order.png create mode 100644 static/image/tabbar/record-a.png create mode 100644 static/image/tabbar/record.png diff --git a/common.scss b/common.scss index 5b84d4d..44fd493 100644 --- a/common.scss +++ b/common.scss @@ -47,4 +47,20 @@ .flex-column { flex-direction: column; +} + +.card { + background-color: #FFFFFF; + border-radius: 12rpx; + padding: 18rpx 20rpx; +} + +.btn-simple { + width: auto; + height: auto !important; + border: none !important; + box-shadow: none; + padding: 0 !important; + margin: 0; + line-height: 1 !important; } \ No newline at end of file diff --git a/components/base/tabbar.vue b/components/base/tabbar.vue index 644b19f..babc973 100644 --- a/components/base/tabbar.vue +++ b/components/base/tabbar.vue @@ -36,11 +36,11 @@ key: 'home', }, { - "selectedIconPath": "/static/image/tabbar/order-a.png", - "iconPath": "/static/image/tabbar/order.png", + "selectedIconPath": "/static/image/tabbar/record-a.png", + "iconPath": "/static/image/tabbar/record.png", "pagePath": "/pages/index/record", "title": "分享记录", - key: 'order', + key: 'record', }, { "selectedIconPath": "/static/image/tabbar/center-a.png", diff --git a/pages/index/index.vue b/pages/index/index.vue index 02d67df..8442d43 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,22 +1,26 @@ @@ -60,9 +64,8 @@ } position: relative; - height: 100vh; - background-color: $uni-bg-color-highlight; + overflow: hidden; .btns { display: grid; @@ -83,5 +86,17 @@ padding: 55rpx 0; } } + + .bg { + width: 100vw; + height: 100vh; + } + + .content { + position: absolute; + width: 100vw; + height: 100vh; + top: 0; + } diff --git a/pages/index/record.vue b/pages/index/record.vue index db49dc0..6d1a4d9 100644 --- a/pages/index/record.vue +++ b/pages/index/record.vue @@ -1,88 +1,106 @@