陈剑华

Merge remote-tracking branch 'origin/main'

@@ -229,7 +229,7 @@ export struct LiveOperRowListView { @@ -229,7 +229,7 @@ export struct LiveOperRowListView {
229 } 229 }
230 } 230 }
231 } 231 }
232 - .height(30) 232 + .height(this.isLlive ? 30:36)
233 .onClick(() => { 233 .onClick(() => {
234 if (this.onCommentInputFocus) { 234 if (this.onCommentInputFocus) {
235 this.onCommentInputFocus() 235 this.onCommentInputFocus()
@@ -56,7 +56,7 @@ export struct DetailPlayShortVideoPage { @@ -56,7 +56,7 @@ export struct DetailPlayShortVideoPage {
56 @State playerHeight: number | string = px2vp(this.windowHeight) 56 @State playerHeight: number | string = px2vp(this.windowHeight)
57 pageParam: ParamType = {} 57 pageParam: ParamType = {}
58 PageName: string = '' 58 PageName: string = ''
59 - @State toastText: ResourceStr = "正在使用非WI-FI网络,播放将产生流量费用" 59 + @State toastText: ResourceStr = "正在使用非Wi-Fi网络,播放将产生流量费用"
60 @Consume onlyWifiLoadVideo: boolean 60 @Consume onlyWifiLoadVideo: boolean
61 @Consume toastTextVisible: boolean 61 @Consume toastTextVisible: boolean
62 @StorageProp('currentBreakpoint') @Watch("currentChanged") currentBreakpoint: string = 'sm'; 62 @StorageProp('currentBreakpoint') @Watch("currentChanged") currentBreakpoint: string = 'sm';
@@ -396,8 +396,8 @@ export struct DetailPlayShortVideoPage { @@ -396,8 +396,8 @@ export struct DetailPlayShortVideoPage {
396 .fontFamily('PingFang SC-Regular') 396 .fontFamily('PingFang SC-Regular')
397 .fontWeight(FontWeight.Regular) 397 .fontWeight(FontWeight.Regular)
398 .fontColor('#FFFFFF') 398 .fontColor('#FFFFFF')
399 - .fontSize(14)  
400 - .lineHeight(20) 399 + .fontSize(16)
  400 + .lineHeight(24)
401 .textAlign(TextAlign.Center) 401 .textAlign(TextAlign.Center)
402 } 402 }
403 403
@@ -406,11 +406,18 @@ export struct DetailPlayShortVideoPage { @@ -406,11 +406,18 @@ export struct DetailPlayShortVideoPage {
406 .fontFamily('PingFang SC-Regular') 406 .fontFamily('PingFang SC-Regular')
407 .fontWeight(FontWeight.Regular) 407 .fontWeight(FontWeight.Regular)
408 .fontColor(Color.White) 408 .fontColor(Color.White)
409 - .fontSize(12) 409 + .fontSize(14)
  410 + .lineHeight(20)
  411 + .textAlign(TextAlign.Center)
  412 + .margin({
  413 + top: 5,
  414 + bottom: 5,
  415 + left: 8,
  416 + right: 8
  417 + })
410 } 418 }
411 .border({ width: 1, color: '#4DFFFFFF', radius: 4 }) 419 .border({ width: 1, color: '#4DFFFFFF', radius: 4 })
412 - .height(28)  
413 - .width(88) 420 + .height(30)
414 .alignItems(HorizontalAlign.Center) 421 .alignItems(HorizontalAlign.Center)
415 .justifyContent(FlexAlign.Center) 422 .justifyContent(FlexAlign.Center)
416 .margin({ 423 .margin({