From cfdc2ea7b0048c0ec9525b6917217c6f020c9f43 Mon Sep 17 00:00:00 2001 From: cbb <1055026847@qq.com> Date: Thu, 15 Jan 2026 17:22:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 7 + App.vue | 15 +- api/index.js | 9 + api/my-index.js | 8 + api/tui-kit.js | 17 ++ pages.json | 22 +- pages/address/index.vue | 4 + pages/adduser/index.vue | 218 ++++++++++++++++++ pages/discover/discover.vue | 14 ++ pages/discover/ranking-list.vue | 10 +- pages/login/login.vue | 23 +- pages/my-index/customer-service/index.vue | 26 ++- .../my-index/customer-service/third-party.vue | 35 +++ pages/my-index/meeting-record/details.vue | 48 ++-- pages/my-index/meeting-record/index.vue | 64 +++-- pages/my-index/my-index.vue | 12 +- pages/my-index/my-team.vue | 8 +- .../wallet/bank-card/card-details.vue | 15 +- pages/my-index/wallet/edit-password.vue | 11 +- pages/my-index/wallet/record.vue | 1 + pages/shop-together/detail.vue | 5 +- pages/shop-together/share.vue | 59 +++++ static/images/discover/share-bg.png | Bin 0 -> 861398 bytes stores/user.js | 21 +- 24 files changed, 569 insertions(+), 83 deletions(-) create mode 100644 pages/adduser/index.vue create mode 100644 pages/my-index/customer-service/third-party.vue create mode 100644 pages/shop-together/share.vue create mode 100644 static/images/discover/share-bg.png diff --git a/.env b/.env index 83a9ced..2d1b476 100644 --- a/.env +++ b/.env @@ -1,5 +1,12 @@ # API VITE_SYSTEM_URL = "http://w6972efb.natappfree.cc" +# VITE_SYSTEM_URL = "https://dev.cqjcteach.cn/prod-api" + +# 第三方客户 channelId +VITE_CHANNEL_ID = "7b81ec142eca42baa045820793b821bb" + +# 第三方客户 groupId +VITE_GROUP_ID = "793db3a29c7846e198d71a1100d9d67b" #文档地址 VITE_DOC_URL = "http://f69dbab6.natappfree.cc" \ No newline at end of file diff --git a/App.vue b/App.vue index ad79bad..38747c6 100644 --- a/App.vue +++ b/App.vue @@ -1,13 +1,13 @@ diff --git a/api/index.js b/api/index.js index 3fd9fb3..a299327 100644 --- a/api/index.js +++ b/api/index.js @@ -138,3 +138,12 @@ export const getTencentUserSig = () => { }) } + +/** 根据ip判断是否黑名单 */ +export const getIpBlack = (loading = true) => { + return http({ + url: '/api/free/black/isBlack', + method: 'get', + loading + }) +} \ No newline at end of file diff --git a/api/my-index.js b/api/my-index.js index d803d75..de63286 100644 --- a/api/my-index.js +++ b/api/my-index.js @@ -267,3 +267,11 @@ export const getUserNoticeDetail = id => { method: 'get' }) } + +/** 客服列表 */ +export const getUserServiceList = () => { + return http({ + url: '/api/service/customerStaff/list', + method: 'get' + }) +} diff --git a/api/tui-kit.js b/api/tui-kit.js index 2bdd937..dc0bd6f 100644 --- a/api/tui-kit.js +++ b/api/tui-kit.js @@ -139,3 +139,20 @@ export const getLiveActivityRecord = id => { method: 'get' }) } + +/** 直播记录列表 */ +export const getLiveRecordList = data => { + return http({ + url: `/api/service/imLiveRoom/list`, + method: 'get', + data + }) +} + +/** 直播记录详情 */ +export const getLiveRecordDetail = id => { + return http({ + url: `/api/service/imLiveRoom/${id}`, + method: 'get' + }) +} diff --git a/pages.json b/pages.json index 3ee4478..5d29aab 100644 --- a/pages.json +++ b/pages.json @@ -208,7 +208,7 @@ { "path": "pages/my-index/meeting-record/index", "style": { - "navigationBarTitleText": "会议记录", + "navigationBarTitleText": "直播记录", "navigationBarBackgroundColor": "#ffffff" } }, @@ -225,6 +225,12 @@ "navigationBarTitleText": "客服" } }, + { + "path": "pages/my-index/customer-service/third-party", + "style": { + "navigationBarTitleText": "第三方客服" + } + }, { "path": "pages/my-index/set-up/index", "style": { @@ -323,6 +329,12 @@ "navigationBarTitleText": "拼团记录" } }, + { + "path": "pages/shop-together/share", + "style": { + "navigationStyle": "custom" + } + }, { "path": "pages/discover/ranking-list", "style": { @@ -400,6 +412,12 @@ "titleNView": false } } + }, + { + "path": "pages/adduser/index", + "style": { + "navigationBarTitleText": "添加好友" + } } ], "globalStyle": { @@ -441,4 +459,4 @@ } ] } -} +} \ No newline at end of file diff --git a/pages/address/index.vue b/pages/address/index.vue index 4c7d03e..89a2054 100644 --- a/pages/address/index.vue +++ b/pages/address/index.vue @@ -126,6 +126,9 @@ diff --git a/pages/discover/discover.vue b/pages/discover/discover.vue index 4072a4b..a150567 100644 --- a/pages/discover/discover.vue +++ b/pages/discover/discover.vue @@ -1,6 +1,9 @@