Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
王士厅
2024-08-19 17:37:20 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
cd339a0b5d0b961cec97a04a82841796f27a12ab
cd339a0b
2 parents
1f48f633
4c35d4ac
Merge branch 'main' of
http://192.168.1.42/developOne/harmonyPool
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
8 deletions
sight_harmony/features/wdComponent/src/main/ets/components/CarderInteraction.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardCommon/RmhTitle.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card12Component.ets
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card15Component.ets
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentCustomDialog.ets
sight_harmony/features/wdComponent/src/main/ets/components/live/AudioRowComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/CarderInteraction.ets
View file @
cd339a0
...
...
@@ -79,7 +79,7 @@ export struct CarderInteraction {
}
}
.width('100%')
.margin({ top: 1
1
})
.margin({ top: 1
0
})
// .padding({
// left: 21,
// right: 21
...
...
sight_harmony/features/wdComponent/src/main/ets/components/cardCommon/RmhTitle.ets
View file @
cd339a0
...
...
@@ -120,6 +120,11 @@ export struct RmhTitle {
.width(36)
.height(36)
.borderRadius(50)
.border({
width: 0.5,
color: '#0D000000', // 5% 透明度的黑色
style: BorderStyle.Solid
})
Image(this.rmhInfo?.authIcon)
.width(14)
.height(14)
...
...
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card12Component.ets
View file @
cd339a0
...
...
@@ -72,16 +72,14 @@ export struct Card12Component {
.fontColor(this.clicked ? 0x848484 : $r('app.color.color_222222'))
.width(CommonConstants.FULL_WIDTH)
.textOverflowStyle(3)
.margin({ bottom: 8 })
.height(75)
.lineHeight(25)
.fontFamily('PingFang SC-Regular')
}
CarderInteraction({contentDTO: this.contentDTO})
}
.padding({
left: 10,
right: 10,
left: 16,
right: 16,
top: $r('app.float.card_comp_pagePadding_tb'),
bottom: $r('app.float.card_comp_pagePadding_tb')
})
...
...
sight_harmony/features/wdComponent/src/main/ets/components/cardview/Card15Component.ets
View file @
cd339a0
...
...
@@ -95,8 +95,8 @@ export struct Card15Component {
//TODO 底部的:分享、评论、点赞 功能;需要引用一个公共组件
}
.padding({
left: 10,
right: 10,
left: 16,
right: 16,
top: $r('app.float.card_comp_pagePadding_tb'),
bottom: $r('app.float.card_comp_pagePadding_tb')
})
...
...
sight_harmony/features/wdComponent/src/main/ets/components/comment/view/CommentCustomDialog.ets
View file @
cd339a0
...
...
@@ -84,6 +84,7 @@ export struct CommentCustomDialog {
controller: this.textInputController,
text: this.publishCommentModel.commentContent
})
.placeholderColor("#999999")
.id("textAreaId")
.defaultFocus(true) // 获取默认焦点
.enableKeyboardOnFocus(true)
...
...
sight_harmony/features/wdComponent/src/main/ets/components/live/AudioRowComponent.ets
View file @
cd339a0
...
...
@@ -13,7 +13,7 @@ export struct AudioRowComponent {
aboutToAppear(): void {
this.playerController.onCanplay = () => {
this.playerController.play()
//
this.playerController.play()
}
this.playerController.onStatusChange = (status: number) => {
if (status == PlayerConstants.STATUS_START) {
...
...
Please
register
or
login
to post a comment