thorui常用组件

tui-tips

<tui-tips position="center" backgroundColor="#EB2444" id="toast" size="22" color="#fff"></tui-tips>

let toast;

 onReady() {
    toast = this.selectComponent("#toast")
 },

let options = {
        msg: '登录成功~',
        duration: 2000
};
toast && toast.showTips(options);