odoo displays a prompt in the upper right corner

The js code prompted in the upper right corner

self.displayNotification({
    
    
     title: "提示",
     message: '请选择要操作的数据!!',
     type: 'danger',
     sticky: false});

There are many types of type, and the prompt style will show different styles according to the type.
There are several kinds of common, danger, warning, info, success.

  • danger style

Insert picture description here

  • warning
    Insert picture description here
  • info
    Insert picture description here
  • success
    Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_42464956/article/details/108630506