diff --git a/src/base/foundation/message.js b/src/base/foundation/message.js index c2a96e0cc..4fbef7eb6 100644 --- a/src/base/foundation/message.js +++ b/src/base/foundation/message.js @@ -24,7 +24,7 @@ BI.Msg = function () { toast: function (message, options, context) { options = options || {}; context = context || BI.Widget._renderEngine.createElement("body"); - var level = options.level || "normal"; + var level = options.level || "common"; var autoClose = BI.isNull(options.autoClose) ? true : options.autoClose; var callback = BI.isFunction(options.callback) ? options.callback : BI.emptyFn; var toast = BI.createWidget({ @@ -200,4 +200,4 @@ BI.Msg = function () { messageShows[messageShows.length] = BI.createWidget(conf); } }; -}(); \ No newline at end of file +}(); diff --git a/src/less/base/single/tip/tip.toast.less b/src/less/base/single/tip/tip.toast.less index 7916ee8a1..1bdc43d78 100644 --- a/src/less/base/single/tip/tip.toast.less +++ b/src/less/base/single/tip/tip.toast.less @@ -14,10 +14,10 @@ &.toast-error{ background: @color-bi-background-failure; } - &.toast-normal{ + &.toast-normal, &.toast-common{ background: @color-bi-background-highlight; } & .toast-icon{ font-size: 16px; } -} \ No newline at end of file +}