From 7d5f7427e55def0c4bed867960e6328b27b1474a Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Fri, 6 Sep 2024 15:07:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=88=86=E7=B1=BB=E3=80=81?= =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E4=B8=AD=E5=BF=83=E3=80=81=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E4=B8=AD=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 4 + components/base/navbar.vue | 65 ++------ components/base/tabbar.vue | 13 +- components/userShop/userShopCommission.vue | 73 +++++++++ pages/index/category.vue | 165 ++++++++++++++++++- pages/index/center.vue | 241 +++++++++++++++++++++++++++- pages/index/order.vue | 205 ++++++++++++++++++++++- static/image/center/1.png | Bin 0 -> 1215 bytes static/image/center/10.png | Bin 0 -> 45856 bytes static/image/center/2.png | Bin 0 -> 6235 bytes static/image/center/3.png | Bin 0 -> 6082 bytes static/image/center/4.png | Bin 0 -> 1783 bytes static/image/center/5.png | Bin 0 -> 2887 bytes static/image/center/6.png | Bin 0 -> 2123 bytes static/image/center/7.png | Bin 0 -> 2439 bytes static/image/center/8.png | Bin 0 -> 2576 bytes static/image/center/9.png | Bin 0 -> 2167 bytes store/store.js | 7 +- uni_modules/uv-ui-tools/libs/css/color.scss | 3 +- 19 files changed, 710 insertions(+), 66 deletions(-) create mode 100644 components/userShop/userShopCommission.vue create mode 100644 static/image/center/1.png create mode 100644 static/image/center/10.png create mode 100644 static/image/center/2.png create mode 100644 static/image/center/3.png create mode 100644 static/image/center/4.png create mode 100644 static/image/center/5.png create mode 100644 static/image/center/6.png create mode 100644 static/image/center/7.png create mode 100644 static/image/center/8.png create mode 100644 static/image/center/9.png diff --git a/App.vue b/App.vue index dc4d93c..5676699 100644 --- a/App.vue +++ b/App.vue @@ -14,5 +14,9 @@ /*每个页面公共css */ body{ background-color: #f7f7f7; + font-size: 30rpx; + } + .page{ + padding-top: var(--window-top); } diff --git a/components/base/navbar.vue b/components/base/navbar.vue index 57c8792..a7526b9 100644 --- a/components/base/navbar.vue +++ b/components/base/navbar.vue @@ -1,10 +1,12 @@