onecold hace 6 meses
padre
commit
acdae2341b
Se han modificado 1 ficheros con 6 adiciones y 6 borrados
  1. 6 6
      entry/src/main/ets/pages/PlaylistDetailPage.ets

+ 6 - 6
entry/src/main/ets/pages/PlaylistDetailPage.ets

@@ -438,7 +438,7 @@ export struct PlaylistDetailPage {
     };
 
     emitter.emit(eventPlaylistPlay, eventData)
-    
+
     ToastUtil.showToast('开始播放歌单')
   }
 
@@ -925,7 +925,7 @@ export struct PlaylistDetailPage {
             .width(40)
             .height(40)
             .color(this.themeColor )
-          
+
           Text('加载中...')
             .fontSize(14)
             .fontColor($r('app.color.text_color'))
@@ -1055,9 +1055,9 @@ export struct PlaylistDetailPage {
             // 编辑歌单按钮
             Button({ type: ButtonType.Capsule, stateEffect: true }) {
               Row({ space: 6 }) {
-                Text('✏️')
+                SymbolGlyph($r('sys.symbol.square_and_pencil'))
                   .fontSize(16)
-                  .fontColor(this.isDarkMode ? Color.White : this.themeColor)
+                  .fontColor([this.isDarkMode ? Color.White : this.themeColor])
 
                 Text('编辑')
                   .fontSize(14)
@@ -1095,9 +1095,9 @@ export struct PlaylistDetailPage {
             // 删除按钮
             Button({ type: ButtonType.Capsule, stateEffect: true }) {
               Row({ space: 6 }) {
-                Text('🗑️')
+                SymbolGlyph($r('sys.symbol.trash'))
                   .fontSize(16)
-                  .fontColor(this.isDarkMode ? Color.White : this.themeColor)
+                  .fontColor([this.isDarkMode ? Color.White : this.themeColor])
                 Text('删除')
                   .fontSize(14)
                   .fontColor(this.isDarkMode ? Color.White : this.themeColor)