wangliang_wd

feat:修改启动广告点击,优化早晚报组件展示

@@ -54,7 +54,7 @@ export struct PaperTitleComponent { @@ -54,7 +54,7 @@ export struct PaperTitleComponent {
54 .margin({ left: 10 }) 54 .margin({ left: 10 })
55 .fontSize(22) 55 .fontSize(22)
56 .fontColor($r('app.color.white')) 56 .fontColor($r('app.color.white'))
57 - .fontWeight(900) 57 + .fontFamily('Source Han Serif CN')
58 .maxLines(1) 58 .maxLines(1)
59 59
60 60
@@ -133,7 +133,7 @@ export struct PaperTitleComponent { @@ -133,7 +133,7 @@ export struct PaperTitleComponent {
133 .linearGradient({ 133 .linearGradient({
134 direction: GradientDirection.Right, // 渐变方向 134 direction: GradientDirection.Right, // 渐变方向
135 repeating: false, // 渐变颜色是否重复 135 repeating: false, // 渐变颜色是否重复
136 - colors: [[0x4dffffff, 0.0], [0x33ffffff, 0.3], [0x1affffff,0.6], [0x03ffffff,1]] // 数组末尾元素占比小于1时满足重复着色效果 136 + colors: [[0x4dffffff, 0.0], [0x33ffffff, 0.2], [0x1affffff,0.6], [0x03ffffff,1]] // 数组末尾元素占比小于1时满足重复着色效果
137 }) 137 })
138 .margin({ left:8, right: 0}) 138 .margin({ left:8, right: 0})
139 139
@@ -451,9 +451,9 @@ export struct PaperSingleColumn999CardView { @@ -451,9 +451,9 @@ export struct PaperSingleColumn999CardView {
451 Text(DateTimeUtils.getFormattedDuration(this.item?.videoInfo.videoDuration * 1000)) 451 Text(DateTimeUtils.getFormattedDuration(this.item?.videoInfo.videoDuration * 1000))
452 .fontColor(Color.White) 452 .fontColor(Color.White)
453 .fontSize($r('app.float.vp_12')) 453 .fontSize($r('app.float.vp_12'))
454 - .fontWeight(500)  
455 .textAlign(TextAlign.End) 454 .textAlign(TextAlign.End)
456 .lineHeight(18) 455 .lineHeight(18)
  456 + .fontFamily('BebasNeue')
457 .textShadow({ 457 .textShadow({
458 radius: 2, 458 radius: 2,
459 color: 'rgba(0,0,0,0.3)', 459 color: 'rgba(0,0,0,0.3)',
@@ -509,7 +509,7 @@ export struct PaperSingleColumn999CardView { @@ -509,7 +509,7 @@ export struct PaperSingleColumn999CardView {
509 Text(this.item?.photoNum.toString()) 509 Text(this.item?.photoNum.toString())
510 .fontColor(Color.White) 510 .fontColor(Color.White)
511 .fontSize($r('app.float.vp_12')) 511 .fontSize($r('app.float.vp_12'))
512 - .fontWeight(500) 512 + .fontFamily('BebasNeue')
513 .textAlign(TextAlign.End) 513 .textAlign(TextAlign.End)
514 .lineHeight(18) 514 .lineHeight(18)
515 .textShadow({ 515 .textShadow({
@@ -98,12 +98,14 @@ struct InteractMessagePage { @@ -98,12 +98,14 @@ struct InteractMessagePage {
98 Column(){ 98 Column(){
99 Row(){ 99 Row(){
100 Text('共获') 100 Text('共获')
101 - .fontSize(18) 101 + .fontSize(18).height(40).align(Alignment.Bottom)
102 Text(this.likeNum.toString()) 102 Text(this.likeNum.toString())
103 - .fontSize(30) 103 + .fontSize(40)
104 .fontColor(Color.Red) 104 .fontColor(Color.Red)
  105 + .fontFamily('BebasNeue')
  106 + .margin(5).height(40).align(Alignment.Bottom)
105 Text('赞') 107 Text('赞')
106 - .fontSize(18) 108 + .fontSize(18).height(40).align(Alignment.Bottom)
107 109
108 }.height(75) 110 }.height(75)
109 111
@@ -261,6 +261,7 @@ struct MyCollectionListPage { @@ -261,6 +261,7 @@ struct MyCollectionListPage {
261 261
262 if (this.allDatas.length === 0) { 262 if (this.allDatas.length === 0) {
263 this.browSingModel.viewType = ViewType.EMPTY; 263 this.browSingModel.viewType = ViewType.EMPTY;
  264 + this.browSingModel.emptyType = WDViewDefaultType.WDViewDefaultType_NoCollection
264 this.browSingModel.hasMore === true 265 this.browSingModel.hasMore === true
265 this.isDisplayButton = false; 266 this.isDisplayButton = false;
266 } 267 }
@@ -168,6 +168,7 @@ struct LaunchAdvertisingPage { @@ -168,6 +168,7 @@ struct LaunchAdvertisingPage {
168 168
169 ///埋点 169 ///埋点
170 this.trackingLaunchClick() 170 this.trackingLaunchClick()
  171 + this.enter()
171 172
172 if(this.defaultModel.linkUrl.length > 0){ 173 if(this.defaultModel.linkUrl.length > 0){
173 if (this.defaultModel.openType == '2') { 174 if (this.defaultModel.openType == '2') {