From eb5402394003df6c9f6dcd62495689b47d53495e Mon Sep 17 00:00:00 2001 From: X1627315083 <1627315083@qq.com> Date: Fri, 23 Aug 2024 10:19:02 +0800 Subject: [PATCH] fix --- .env.dev | 2 +- src/assets/style/style.css | 7 +- src/assets/style/style.less | 7 +- src/component/Account/account.vue | 94 +++- src/component/Account/accountEdit.vue | 56 ++- src/component/Account/accountFollowFans.vue | 122 ++++- src/component/Account/accountHome.vue | 20 +- src/component/Account/accountMessage.vue | 158 ++---- src/component/Account/followFans/fans.vue | 156 ++++++ src/component/Account/followFans/follow.vue | 157 ++++++ src/component/Account/message/comment.vue | 144 +++--- src/component/Account/message/likeMessage.vue | 100 ++-- src/component/Account/message/newFollow.vue | 101 +++- src/component/Account/message/privateChat.vue | 2 +- src/component/Account/message/system.vue | 77 ++- src/component/Account/otherUsers.vue | 50 +- src/component/Administrator/TestClickData.vue | 52 +- src/component/Detail/editFrontBack.vue | 469 ++++++++++++++++++ src/component/Detail/setDesignItem.vue | 14 +- src/component/Detail/setDesignItem2.vue | 67 --- src/component/Detail/setDesignItemMobile.vue | 1 + src/component/HomePage/Cropper.vue | 7 +- src/component/HomePage/ExportModel.vue | 25 +- src/component/HomePage/productImg.vue | 3 + src/component/WorksPage/newScaleImage.vue | 40 +- .../WorksPage/newScaleImageMobile.vue | 22 +- src/router/index.ts | 15 +- src/store/userHabit/userHabit.ts | 15 +- src/tool/https.js | 3 +- src/tool/util.js | 103 ++++ src/views/HomeMain.vue | 34 +- src/views/HomeRecommend.vue | 5 +- src/views/HomeView/Works.vue | 25 +- src/views/LoginPage.vue | 7 + tsconfig.json | 1 + 35 files changed, 1709 insertions(+), 452 deletions(-) create mode 100644 src/component/Account/followFans/fans.vue create mode 100644 src/component/Account/followFans/follow.vue create mode 100644 src/component/Detail/editFrontBack.vue diff --git a/.env.dev b/.env.dev index dd58044b..51779256 100644 --- a/.env.dev +++ b/.env.dev @@ -6,6 +6,6 @@ NODE_ENV = 'development' VUE_APP_BASE_URL = 'https://develop.api.aida.com.hk' VUE_APP_BASE_URL = 'https://www.api.aida.com.hk' # 佩佩 -# VUE_APP_BASE_URL = 'http://192.168.1.7:5567' +VUE_APP_BASE_URL = 'http://192.168.1.7:5567' # 海波 # VUE_APP_BASE_URL = 'http://192.168.1.9:5567' diff --git a/src/assets/style/style.css b/src/assets/style/style.css index c750b6c3..27ef28c5 100644 --- a/src/assets/style/style.css +++ b/src/assets/style/style.css @@ -1300,9 +1300,9 @@ li { } .homeMain_heade sup.ant-scroll-number, .account_message sup.ant-scroll-number { - height: 2rem; + height: 1.2rem; min-height: 5px; - width: 2rem; + width: 1.2rem; min-width: 5px; padding: 0; font-size: 1.1rem; @@ -1322,12 +1322,13 @@ li { height: 100%; font-size: 1.2rem; display: flex; + transform: scale(0.7); align-items: center; justify-content: center; } .homeMain_heade p.ant-scroll-number-only-unit, .account_message p.ant-scroll-number-only-unit { - line-height: 2rem; + line-height: 1.2rem; height: 100%; } .modal_title_text { diff --git a/src/assets/style/style.less b/src/assets/style/style.less index 7534dc75..9010b6bb 100644 --- a/src/assets/style/style.less +++ b/src/assets/style/style.less @@ -1437,9 +1437,9 @@ input:focus{ height: auto; } sup.ant-scroll-number{ - height: 2rem; + height: 1.2rem; min-height: 5px; - width: 2rem; + width: 1.2rem; min-width: 5px; padding: 0; font-size: 1.1rem; @@ -1457,12 +1457,13 @@ input:focus{ height: 100%; font-size: 1.2rem; display: flex; + transform: scale(.7); align-items: center; justify-content: center; } } p.ant-scroll-number-only-unit{ - line-height: 2rem; + line-height: 1.2rem; height: 100%; } } diff --git a/src/component/Account/account.vue b/src/component/Account/account.vue index f2f78a77..e7e57273 100644 --- a/src/component/Account/account.vue +++ b/src/component/Account/account.vue @@ -58,7 +58,7 @@ export default defineComponent({ route:'/home/account/accountMessage', icon:'fi-rr-envelope' },{ - name:'粉丝&关注', + name:'关注&粉丝', route:'/home/account/accountFollowFans', icon:'fi-rr-envelope' }, @@ -147,3 +147,95 @@ export default defineComponent({ } + \ No newline at end of file diff --git a/src/component/Account/accountEdit.vue b/src/component/Account/accountEdit.vue index dd62ae60..9d955ea5 100644 --- a/src/component/Account/accountEdit.vue +++ b/src/component/Account/accountEdit.vue @@ -4,11 +4,9 @@