xz_gangba/utils/dialog.js

8 lines
124 B
JavaScript
Raw Normal View History

2020-06-26 11:52:30 +08:00
function msg(text) {
wx.showToast({
title: text,
icon: 'none',
duration: 1000
})
}
module.exports.msg = msg;