mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
function notify(resp) {
|
|
if (resp.status) {
|
|
this.$dialog.notify.success(resp.msg, {
|
|
position: "top-right",
|
|
});
|
|
} else {
|
|
this.$dialog.notify.error(resp.msg, {
|
|
position: "top-right",
|
|
});
|
|
}
|
|
};
|
|
|
|
export default { notify }; |