From 7d0ba1e13ce4ae709d11ab02b96b733e40dd86b4 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Sun, 24 Nov 2024 13:33:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=94=B9logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-uniapp/components/bar/arrow-bar.vue | 39 ++++ im-uniapp/components/bar/bar-group.vue | 17 ++ im-uniapp/components/bar/btn-bar.vue | 66 +++++++ im-uniapp/components/bar/switch-bar.vue | 61 ++++++ .../components/friend-item/friend-item.vue | 4 +- .../components/group-item/group-item.vue | 4 +- im-uniapp/main.js | 8 + im-uniapp/manifest.json | 4 +- im-uniapp/pages/common/user-info.vue | 177 +++++++++--------- im-uniapp/pages/group/group-info.vue | 10 +- im-uniapp/pages/login/login.vue | 5 +- im-uniapp/pages/mine/mine.vue | 10 +- im-uniapp/pages/register/register.vue | 3 +- im-uniapp/static/logo/logo.png | Bin 165499 -> 244153 bytes im-uniapp/static/tarbar/mine.png | Bin 9218 -> 9325 bytes im-uniapp/static/tarbar/mine_active.png | Bin 6217 -> 8559 bytes im-uniapp/unpackage/res/icons/1024x1024.png | Bin 0 -> 210018 bytes im-uniapp/unpackage/res/icons/120x120.png | Bin 0 -> 7823 bytes im-uniapp/unpackage/res/icons/144x144.png | Bin 0 -> 10005 bytes im-uniapp/unpackage/res/icons/152x152.png | Bin 0 -> 10801 bytes im-uniapp/unpackage/res/icons/167x167.png | Bin 0 -> 12308 bytes im-uniapp/unpackage/res/icons/180x180.png | Bin 0 -> 13839 bytes im-uniapp/unpackage/res/icons/192x192.png | Bin 0 -> 14965 bytes im-uniapp/unpackage/res/icons/20x20.png | Bin 0 -> 839 bytes im-uniapp/unpackage/res/icons/29x29.png | Bin 0 -> 1267 bytes im-uniapp/unpackage/res/icons/40x40.png | Bin 0 -> 1908 bytes im-uniapp/unpackage/res/icons/58x58.png | Bin 0 -> 3017 bytes im-uniapp/unpackage/res/icons/60x60.png | Bin 0 -> 3211 bytes im-uniapp/unpackage/res/icons/72x72.png | Bin 0 -> 4042 bytes im-uniapp/unpackage/res/icons/76x76.png | Bin 0 -> 4355 bytes im-uniapp/unpackage/res/icons/80x80.png | Bin 0 -> 4678 bytes im-uniapp/unpackage/res/icons/87x87.png | Bin 0 -> 5214 bytes im-uniapp/unpackage/res/icons/96x96.png | Bin 0 -> 5809 bytes im-web/public/logo.png | Bin 63432 -> 143941 bytes im-web/src/api/camera.js | 5 +- im-web/src/view/Login.vue | 16 +- im-web/src/view/Register.vue | 14 +- 37 files changed, 328 insertions(+), 115 deletions(-) create mode 100644 im-uniapp/components/bar/arrow-bar.vue create mode 100644 im-uniapp/components/bar/bar-group.vue create mode 100644 im-uniapp/components/bar/btn-bar.vue create mode 100644 im-uniapp/components/bar/switch-bar.vue create mode 100644 im-uniapp/unpackage/res/icons/1024x1024.png create mode 100644 im-uniapp/unpackage/res/icons/120x120.png create mode 100644 im-uniapp/unpackage/res/icons/144x144.png create mode 100644 im-uniapp/unpackage/res/icons/152x152.png create mode 100644 im-uniapp/unpackage/res/icons/167x167.png create mode 100644 im-uniapp/unpackage/res/icons/180x180.png create mode 100644 im-uniapp/unpackage/res/icons/192x192.png create mode 100644 im-uniapp/unpackage/res/icons/20x20.png create mode 100644 im-uniapp/unpackage/res/icons/29x29.png create mode 100644 im-uniapp/unpackage/res/icons/40x40.png create mode 100644 im-uniapp/unpackage/res/icons/58x58.png create mode 100644 im-uniapp/unpackage/res/icons/60x60.png create mode 100644 im-uniapp/unpackage/res/icons/72x72.png create mode 100644 im-uniapp/unpackage/res/icons/76x76.png create mode 100644 im-uniapp/unpackage/res/icons/80x80.png create mode 100644 im-uniapp/unpackage/res/icons/87x87.png create mode 100644 im-uniapp/unpackage/res/icons/96x96.png diff --git a/im-uniapp/components/bar/arrow-bar.vue b/im-uniapp/components/bar/arrow-bar.vue new file mode 100644 index 0000000..7523785 --- /dev/null +++ b/im-uniapp/components/bar/arrow-bar.vue @@ -0,0 +1,39 @@ + + + + + \ No newline at end of file diff --git a/im-uniapp/components/bar/bar-group.vue b/im-uniapp/components/bar/bar-group.vue new file mode 100644 index 0000000..e4e7cbb --- /dev/null +++ b/im-uniapp/components/bar/bar-group.vue @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/im-uniapp/components/bar/btn-bar.vue b/im-uniapp/components/bar/btn-bar.vue new file mode 100644 index 0000000..df18045 --- /dev/null +++ b/im-uniapp/components/bar/btn-bar.vue @@ -0,0 +1,66 @@ + + + + + \ No newline at end of file diff --git a/im-uniapp/components/bar/switch-bar.vue b/im-uniapp/components/bar/switch-bar.vue new file mode 100644 index 0000000..44a50b5 --- /dev/null +++ b/im-uniapp/components/bar/switch-bar.vue @@ -0,0 +1,61 @@ + + + + + \ No newline at end of file diff --git a/im-uniapp/components/friend-item/friend-item.vue b/im-uniapp/components/friend-item/friend-item.vue index 726fe46..d58293c 100644 --- a/im-uniapp/components/friend-item/friend-item.vue +++ b/im-uniapp/components/friend-item/friend-item.vue @@ -1,6 +1,6 @@ diff --git a/im-uniapp/pages/login/login.vue b/im-uniapp/pages/login/login.vue index 8d0727c..7d7162b 100644 --- a/im-uniapp/pages/login/login.vue +++ b/im-uniapp/pages/login/login.vue @@ -1,6 +1,5 @@ diff --git a/im-uniapp/pages/register/register.vue b/im-uniapp/pages/register/register.vue index e174048..fb85e2e 100644 --- a/im-uniapp/pages/register/register.vue +++ b/im-uniapp/pages/register/register.vue @@ -1,6 +1,5 @@