Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -148,7 +148,9 @@ export struct OperRowListView { | @@ -148,7 +148,9 @@ export struct OperRowListView { | ||
| 148 | // 视频详情页 | 148 | // 视频详情页 |
| 149 | 149 | ||
| 150 | Column() { | 150 | Column() { |
| 151 | - Divider().strokeWidth(1).color(this.styleType == 1 ? Color.White : this.styleType == 2 ? '#262626' : Color.Transparent) | 151 | + if(this.styleType != 3) { |
| 152 | + Divider().strokeWidth(1).color(this.styleType == 1 ? '#F5F5F5' : this.styleType == 2 ? '#262626' : 'rgba(0,0,0,0)') | ||
| 153 | + } | ||
| 152 | 154 | ||
| 153 | Flex({ justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) { | 155 | Flex({ justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) { |
| 154 | // AudioDialog() | 156 | // AudioDialog() |
-
Please register or login to post a comment