王士厅
... ... @@ -79,7 +79,7 @@ export struct CarderInteraction {
}
}
.width('100%')
.margin({ top: 11 })
.margin({ top: 10 })
// .padding({
// left: 21,
// right: 21
... ...
... ... @@ -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)
... ...
... ... @@ -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')
})
... ...
... ... @@ -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')
})
... ...
... ... @@ -84,6 +84,7 @@ export struct CommentCustomDialog {
controller: this.textInputController,
text: this.publishCommentModel.commentContent
})
.placeholderColor("#999999")
.id("textAreaId")
.defaultFocus(true) // 获取默认焦点
.enableKeyboardOnFocus(true)
... ...
... ... @@ -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) {
... ...