mirror of
https://gitee.com/openharmony/applications_notes
synced 2024-11-27 01:30:27 +00:00
commit
cc70d193ef
@ -384,7 +384,7 @@ struct FolderItemComp {
|
||||
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
||||
.flexShrink(1)
|
||||
.fontColor(FolderUtil.getFolderTextColor(this.selectedFolderData.uuid == this.folderItem.uuid))
|
||||
Text(this.refreshFlag.toString())
|
||||
Text(JSON.stringify(this.refreshFlag))
|
||||
.visibility(Visibility.None) // 用于强制刷新使用
|
||||
}.width(118)
|
||||
|
||||
@ -445,7 +445,7 @@ struct FolderItemComp {
|
||||
.textOverflow({ overflow: TextOverflow.Ellipsis })
|
||||
.flexShrink(1)
|
||||
.fontColor(FolderUtil.getFolderTextColor(this.selectedFolderData.uuid == this.folderItem.uuid))
|
||||
Text(this.refreshFlag.toString())
|
||||
Text(JSON.stringify(this.refreshFlag))
|
||||
.visibility(Visibility.None) // 用于强制刷新使用
|
||||
}.width(118)
|
||||
|
||||
|
@ -226,7 +226,7 @@ export struct NoteItemComp {
|
||||
build() {
|
||||
Flex({ justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) {
|
||||
Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
|
||||
Text(this.refreshFlag.toString()).visibility(Visibility.None) // 用于强制刷新使用
|
||||
Text(JSON.stringify(this.refreshFlag)).visibility(Visibility.None) // 用于强制刷新使用
|
||||
Column({ space: 2 }) {
|
||||
Row({ space: 8 }) {
|
||||
Image($r("app.media.verticalBar"))
|
||||
|
Loading…
Reference in New Issue
Block a user