mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
25 lines
317 B
JavaScript
25 lines
317 B
JavaScript
/**
|
|
* 核心工具类
|
|
*
|
|
* add by wuxw 2019-12-28
|
|
*
|
|
*
|
|
*/
|
|
|
|
class CoreUtil{
|
|
|
|
// 封装 wx.showToast 方法
|
|
static showInfo(info = 'error', icon = 'none') {
|
|
wx.showToast({
|
|
title: info,
|
|
icon: icon,
|
|
duration: 1500,
|
|
mask: true
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
module.exports = CoreUtil; |