From 16b79c886ed2e611e00b6a693e45e5775f1d5e5a Mon Sep 17 00:00:00 2001 From: mashitao2 Date: Thu, 24 Nov 2022 20:38:07 +0800 Subject: [PATCH] =?UTF-8?q?Issue:#I630IA:=E6=95=B4=E6=94=B9=E5=85=A8?= =?UTF-8?q?=E9=80=89=E4=BD=8D=E7=BD=AE=E9=97=AE=E9=A2=98=20Description:=20?= =?UTF-8?q?Rectification=20of=20all=20selected=20positions=20Sig:=20SIG=5F?= =?UTF-8?q?Notes=20Feature=20or=20Bugfix:=20Bugfix=20Binary=20Source:=20No?= =?UTF-8?q?=20Signed-off-by:=20mashitao2=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/src/main/ets/components/NoteListComp.ets | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/features/src/main/ets/components/NoteListComp.ets b/features/src/main/ets/components/NoteListComp.ets index f847357..95cd22a 100644 --- a/features/src/main/ets/components/NoteListComp.ets +++ b/features/src/main/ets/components/NoteListComp.ets @@ -578,7 +578,7 @@ export struct OperateNoteComp { .height(24) .opacity(this.CheckedNoteArray.length == 0 ? 0.4 : 1) .enabled(this.CheckedNoteArray.length == 0 ? false : true) - .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 0 : 24 }) + .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 0 : 18 }) .visibility(this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? Visibility.None : Visibility.Visible) .onClick(() => { this.CheckedNoteArray.forEach((noteItem) => { @@ -597,7 +597,7 @@ export struct OperateNoteComp { .height(24) .opacity(this.CheckedNoteArray.length == 0 ? 0.4 : 1) .enabled(this.CheckedNoteArray.length == 0 ? false : true) - .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 0 : 24 }) + .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 0 : 18 }) .visibility(this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? Visibility.None : Visibility.Visible) .onClick(() => { this.noteDataMoveDialogCtl.open() @@ -605,7 +605,7 @@ export struct OperateNoteComp { Image($r('app.media.delete')) .width(24) .height(24) - .margin({ right: 24 }) + .margin({ right: 18 }) .opacity(this.CheckedNoteArray.length == 0 ? 0.4 : 1) .enabled(this.CheckedNoteArray.length == 0 ? false : true) .onClick(() => { @@ -616,7 +616,7 @@ export struct OperateNoteComp { .height(24) .opacity(this.CheckedNoteArray.length == 0 ? 0.4 : 1) .enabled(this.CheckedNoteArray.length == 0 ? false : true) - .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 24 : 0 }) + .margin({ right: this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 18 : 0 }) .visibility(this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? Visibility.Visible : Visibility.None) .onClick(() => { this.CheckedNoteArray.forEach((noteItem) => { @@ -659,7 +659,7 @@ export struct OperateNoteComp { this.refreshFlag = (this.refreshFlag == 0 ? 1 : 0) }) } - .width(this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 120 : 168) + .width(this.selectedFolderData.uuid == SysDefFolderUuid.RecentDeletes ? 120 : 248) .visibility(this.longpress && this.portraitModel == false ? Visibility.Visible : Visibility.None) } } -- Gitee