8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
|
function msg(text) {
|
||
|
wx.showToast({
|
||
|
title: text,
|
||
|
icon: 'none',
|
||
|
duration: 1000
|
||
|
})
|
||
|
}
|
||
|
module.exports.msg = msg;
|