Showing
1 changed file
with
21 additions
and
3 deletions
| @@ -249,7 +249,16 @@ export struct PlayerTitleView { | @@ -249,7 +249,16 @@ export struct PlayerTitleView { | ||
| 249 | } | 249 | } |
| 250 | }) | 250 | }) |
| 251 | if (this.isOverLines) { | 251 | if (this.isOverLines) { |
| 252 | - Span('... 全文') | 252 | + Span('... ') |
| 253 | + .fontColor(Color.White) | ||
| 254 | + .fontWeight(400) | ||
| 255 | + .fontFamily('PingFang SC-Regular') | ||
| 256 | + .fontSize(12) | ||
| 257 | + .onClick(() => { | ||
| 258 | + this.isOpenDetail = true | ||
| 259 | + this.dialogController?.open() | ||
| 260 | + }) | ||
| 261 | + Span('全文') | ||
| 253 | .fontColor('#99FFFFFF') | 262 | .fontColor('#99FFFFFF') |
| 254 | .fontWeight(400) | 263 | .fontWeight(400) |
| 255 | .fontFamily('PingFang SC-Regular') | 264 | .fontFamily('PingFang SC-Regular') |
| @@ -309,9 +318,18 @@ export struct PlayerTitleView { | @@ -309,9 +318,18 @@ export struct PlayerTitleView { | ||
| 309 | .fontWeight(600) | 318 | .fontWeight(600) |
| 310 | .fontFamily('PingFang SC-Regular') | 319 | .fontFamily('PingFang SC-Regular') |
| 311 | if (this.isTitleOverLines) { | 320 | if (this.isTitleOverLines) { |
| 312 | - Span('... 全文') | 321 | + Span('... ') |
| 322 | + .fontColor(Color.White) | ||
| 323 | + .fontWeight(400) | ||
| 324 | + .fontFamily('PingFang SC-Regular') | ||
| 325 | + .fontSize(12) | ||
| 326 | + .onClick(() => { | ||
| 327 | + this.isOpenDetail = true | ||
| 328 | + this.dialogController?.open() | ||
| 329 | + }) | ||
| 330 | + Span('全文') | ||
| 313 | .fontColor('#99FFFFFF') | 331 | .fontColor('#99FFFFFF') |
| 314 | - .fontWeight(600) | 332 | + .fontWeight(400) |
| 315 | .fontFamily('PingFang SC-Regular') | 333 | .fontFamily('PingFang SC-Regular') |
| 316 | .fontSize(12) | 334 | .fontSize(12) |
| 317 | .onClick(() => { | 335 | .onClick(() => { |
-
Please register or login to post a comment