From f52cfaef9933cd595acd52d0e51f7af4a9b32176 Mon Sep 17 00:00:00 2001 From: Hongyu Shi Date: Fri, 11 Jul 2025 09:54:30 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E5=9B=BA=E5=AE=9A=E6=A1=86=E5=AE=BD?= =?UTF-8?q?=E5=BA=A6=E4=BB=A5=E4=BF=AE=E5=A4=8D=E5=B8=83=E5=B1=80=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hongyu Shi --- src/components/sessionCard/SessionCard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/sessionCard/SessionCard.vue b/src/components/sessionCard/SessionCard.vue index e894eb4..9384c13 100644 --- a/src/components/sessionCard/SessionCard.vue +++ b/src/components/sessionCard/SessionCard.vue @@ -287,6 +287,7 @@ const deleteOne = (name: string, list: string[]) => { &__box { flex: 1; border-radius: 8px; + width: 264px; height: 66px; background-color: var(--o-bg-color-light); padding: 0px 5px 12px 15px; -- Gitee From edff44e243528d8220eca04701d8015e0de20dac Mon Sep 17 00:00:00 2001 From: Hongyu Shi Date: Mon, 14 Jul 2025 17:27:21 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20think=20?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E5=BC=82=E5=B8=B8=E6=98=BE=E7=A4=BA=E5=9C=A8?= =?UTF-8?q?=E5=88=AB=E7=9A=84=E5=AF=B9=E8=AF=9D=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hongyu Shi --- .../dialoguePanel/DialoguePanel.vue | 232 ++++++++++-------- .../dialoguePanel/DialogueThought.vue | 9 +- 2 files changed, 137 insertions(+), 104 deletions(-) diff --git a/src/components/dialoguePanel/DialoguePanel.vue b/src/components/dialoguePanel/DialoguePanel.vue index 9f24130..a29ae30 100644 --- a/src/components/dialoguePanel/DialoguePanel.vue +++ b/src/components/dialoguePanel/DialoguePanel.vue @@ -1,7 +1,7 @@ -- Gitee From 76567ea4e72ebe3b2a9e793e027ba36de6afe94d Mon Sep 17 00:00:00 2001 From: Hongyu Shi Date: Tue, 15 Jul 2025 10:29:40 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20contentAfterMar?= =?UTF-8?q?k=20=E5=AE=9A=E4=B9=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hongyu Shi --- src/components/dialoguePanel/DialoguePanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialoguePanel/DialoguePanel.vue b/src/components/dialoguePanel/DialoguePanel.vue index a29ae30..6bf185a 100644 --- a/src/components/dialoguePanel/DialoguePanel.vue +++ b/src/components/dialoguePanel/DialoguePanel.vue @@ -74,6 +74,7 @@ const props = withDefaults(defineProps(), { }); const messageArray = ref(props.messageArray); const thoughtContent = ref(''); +const contentAfterMark = ref(''); const index = ref(0); const isComment = ref('none'); @@ -329,7 +330,6 @@ const unbindReportClick = () => { const isAgainstVisible = ref(false); const isReportVisible = ref(false); const txt2imgPathZoom = ref(''); -const contentAfterMark = ref(''); const prePageHandle = (cid: number) => { thoughtContent.value = ''; -- Gitee