From 7e8151f0ac3f774fa0fdd07c5a619a83886c1102 Mon Sep 17 00:00:00 2001 From: Jafeng <2998840497@qq.com> Date: Thu, 5 Feb 2026 10:27:20 +0800 Subject: [PATCH 1/4] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/customer-archive.vue | 7 ++++--- pages/home/home.vue | 4 ++-- pages/home/team-head.vue | 10 +++++++++- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/pages/home/customer-archive.vue b/pages/home/customer-archive.vue index 5da5684..50355fc 100644 --- a/pages/home/customer-archive.vue +++ b/pages/home/customer-archive.vue @@ -4,7 +4,7 @@ 成员档案 - + 档案管理 @@ -23,7 +23,7 @@ {{ i.relationship }} - {{ i.name }} @@ -347,7 +347,8 @@ watch(() => props.corpId, n => { .info-title { color: #213E80; font-size: 32rpx; - font-weight: 500; + font-weight: 400; + line-height: 56rpx; } .info-subtitle { diff --git a/pages/home/home.vue b/pages/home/home.vue index ecd7106..ea16ddb 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -10,9 +10,9 @@ - + diff --git a/pages/home/team-head.vue b/pages/home/team-head.vue index 80fd753..feadd2f 100644 --- a/pages/home/team-head.vue +++ b/pages/home/team-head.vue @@ -2,7 +2,7 @@ - + @@ -101,6 +101,14 @@ function select(team) { showDropDown.value = false; } +function toTeamDetail() { + if (props.team && props.team.teamId) { + uni.navigateTo({ + url: `/pages/team/team-detail?teamId=${props.team.teamId}&corpId=${props.team.corpId}&corpName=${encodeURIComponent(props.team.corpName || '')}` + }); + } +} + watch( () => props.teams, (teams) => { From 9dda930d1fb6e604e39932726783b1b142ab1b2c Mon Sep 17 00:00:00 2001 From: wangdongbo <949818794@qq.com> Date: Thu, 5 Feb 2026 14:01:01 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/message/chat.scss | 36 +++++++++++-------------- pages/message/components/chat-input.vue | 2 +- 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/pages/message/chat.scss b/pages/message/chat.scss index a7e418e..9afab37 100644 --- a/pages/message/chat.scss +++ b/pages/message/chat.scss @@ -445,39 +445,33 @@ $primary-color: #0877F1; min-width: 0; } -.text-input { - flex: 1; - padding: 16rpx 24rpx; - background-color: #f3f5fa; - border-radius: 20rpx; - margin: 0; - font-size: 28rpx; - min-height: 56rpx; - max-height: 200rpx; - border: none; - outline: none; - box-sizing: border-box; - line-height: 1.5; - color: #333; - vertical-align: middle; -} - +.text-input, .voice-input-btn { flex: 1; - padding: 16rpx 24rpx; + padding: 16rpx; background-color: #f3f5fa; - border-radius: 20rpx; - margin: 0; + border-radius: 10rpx; font-size: 28rpx; - min-height: 56rpx; + min-height: 80rpx; max-height: 200rpx; border: none; outline: none; box-sizing: border-box; line-height: 1.5; color: #333; + display: flex; + align-items: center; + justify-content: center; } +.text-input { + padding: 20rpx; + display: block; + line-height: 1.5; + height: 80rpx; +} + + .voice-input-btn { height: 56rpx; display: flex; diff --git a/pages/message/components/chat-input.vue b/pages/message/components/chat-input.vue index 6b80d4e..59ee14c 100644 --- a/pages/message/components/chat-input.vue +++ b/pages/message/components/chat-input.vue @@ -8,7 +8,7 @@