王士厅

fix: 沉浸式视频进度条左右边距修改

@@ -130,11 +130,12 @@ export struct PlayerProgressView { @@ -130,11 +130,12 @@ export struct PlayerProgressView {
130 this.isDragging = false 130 this.isDragging = false
131 } 131 }
132 this.playerController?.setSeekTime(value, mode); 132 this.playerController?.setSeekTime(value, mode);
133 - console.log('slider onChange:', value, mode) 133 + // console.log('slider onChange:', value, mode)
134 134
135 }) 135 })
136 } 136 }
137 .width('100%') 137 .width('100%')
  138 + .padding({ left: 6, right: 6 })
138 .height(24) 139 .height(24)
139 .justifyContent(FlexAlign.Center) 140 .justifyContent(FlexAlign.Center)
140 141
@@ -94,7 +94,7 @@ export struct PlayerTitleView { @@ -94,7 +94,7 @@ export struct PlayerTitleView {
94 } 94 }
95 clipStr += strArr[i] 95 clipStr += strArr[i]
96 } 96 }
97 - console.log(TAG, 'clipStr:', clipStr) 97 + // console.log(TAG, 'clipStr:', clipStr)
98 return clipStr 98 return clipStr
99 } 99 }
100 100
@@ -130,7 +130,7 @@ export struct PlayerTitleView { @@ -130,7 +130,7 @@ export struct PlayerTitleView {
130 } 130 }
131 clipStr += strArr[i] 131 clipStr += strArr[i]
132 } 132 }
133 - console.log(TAG, 'clipTitleText clipStr:', clipStr) 133 + // console.log(TAG, 'clipTitleText clipStr:', clipStr)
134 return clipStr 134 return clipStr
135 } 135 }
136 136
@@ -145,8 +145,8 @@ export struct PlayerTitleView { @@ -145,8 +145,8 @@ export struct PlayerTitleView {
145 145
146 }) 146 })
147 this.titleHeight = info?.height as number || 0 147 this.titleHeight = info?.height as number || 0
148 - console.log('titleHeight:', this.titleHeight,)  
149 - console.log(TAG, 'this.contentDetailData:', JSON.stringify(this.contentDetailData)) 148 + // console.log('titleHeight:', this.titleHeight,)
  149 + // console.log(TAG, 'this.contentDetailData:', JSON.stringify(this.contentDetailData))
150 this.summary = this.getSummary() 150 this.summary = this.getSummary()
151 } 151 }
152 152