0

我正在尝试更改 Sencha Ext 现代中的默认颜色和背景。我使用 style 和 bodyStyle 但它不活跃。

Ext.toast({
    message: 'Update success',
    timeout: 5000,
    bodyStyle: {
      color: 'black',
      background:'#fafafa'
   }
 {*style: {
     color: 'black',
     background: '#fafafa',
   } *}
})

Hovever,Ext 经典​​它再次起作用。

  Ext.toast({
    html: 'Update success',
    timeout: 5000,
    bodyStyle: {
      color: 'black',
      background:'#fafafa'
   }
})

如何在 ext modern 中向客户敬酒?

4

0 回答 0