陈剑华

Merge remote-tracking branch 'origin/main'

... ... @@ -249,7 +249,16 @@ export struct PlayerTitleView {
}
})
if (this.isOverLines) {
Span('... 全文')
Span('... ')
.fontColor(Color.White)
.fontWeight(400)
.fontFamily('PingFang SC-Regular')
.fontSize(12)
.onClick(() => {
this.isOpenDetail = true
this.dialogController?.open()
})
Span('全文')
.fontColor('#99FFFFFF')
.fontWeight(400)
.fontFamily('PingFang SC-Regular')
... ... @@ -309,9 +318,18 @@ export struct PlayerTitleView {
.fontWeight(600)
.fontFamily('PingFang SC-Regular')
if (this.isTitleOverLines) {
Span('... 全文')
Span('... ')
.fontColor(Color.White)
.fontWeight(400)
.fontFamily('PingFang SC-Regular')
.fontSize(12)
.onClick(() => {
this.isOpenDetail = true
this.dialogController?.open()
})
Span('全文')
.fontColor('#99FFFFFF')
.fontWeight(600)
.fontWeight(400)
.fontFamily('PingFang SC-Regular')
.fontSize(12)
.onClick(() => {
... ...
... ... @@ -101,6 +101,7 @@ struct Index {
}
build() {
Column(){
Stack({ alignContent: Alignment.End }) {
Progress(
{
... ... @@ -115,7 +116,7 @@ struct Index {
.backgroundColor($r('app.color.white'))
.width("100%")
.height(3)
.margin({ top: 57 })
.margin({ top: 56 })
.visibility(this.isExpand ? Visibility.Visible : Visibility.Hidden)
Stack({ alignContent: Alignment.End }) {
Column() { //标题 时间 进度条
... ... @@ -166,7 +167,7 @@ struct Index {
left: 10,
right: 0
})
.width(243)
.width(247)
.height(60)
.justifyContent(FlexAlign.Start)
// .onClick(() => {
... ... @@ -255,6 +256,15 @@ struct Index {
)
)
.borderRadius(4)
.shadow({
radius: vp2px(5),
color: 'rgba(0, 0, 0, 0.10)',
offsetX: 0,
offsetY: 1
}) // 设
.backgroundColor(Color.White)
}
.padding(1)
}
}
\ No newline at end of file
... ...