Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -187,6 +187,8 @@ export struct EmptyComponent { | @@ -187,6 +187,8 @@ export struct EmptyComponent { | ||
| 187 | contentString = '获取内容失败请重试' // 前方拥堵,请耐心等待 | 187 | contentString = '获取内容失败请重试' // 前方拥堵,请耐心等待 |
| 188 | } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1) { | 188 | } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1) { |
| 189 | contentString = '暂无内容' | 189 | contentString = '暂无内容' |
| 190 | + } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) { | ||
| 191 | + contentString = '暂无关注' | ||
| 190 | } | 192 | } |
| 191 | 193 | ||
| 192 | return contentString | 194 | return contentString |
| @@ -217,7 +219,7 @@ export struct EmptyComponent { | @@ -217,7 +219,7 @@ export struct EmptyComponent { | ||
| 217 | imageString = $r('app.media.icon_no_master1') | 219 | imageString = $r('app.media.icon_no_master1') |
| 218 | } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) { | 220 | } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoVideo) { |
| 219 | imageString = $r('app.media.icon_no_content') | 221 | imageString = $r('app.media.icon_no_content') |
| 220 | - } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1) { | 222 | + } else if (this.emptyType === WDViewDefaultType.WDViewDefaultType_NoContent1 || this.emptyType === WDViewDefaultType.WDViewDefaultType_NoFollow) { |
| 221 | imageString = $r('app.media.icon_no_appointmentMade1') | 223 | imageString = $r('app.media.icon_no_appointmentMade1') |
| 222 | } | 224 | } |
| 223 | return imageString | 225 | return imageString |
-
Please register or login to post a comment