WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2021-05-13 353bc5084a28952e360c4e7a5dc22d552b4fe16d
common/Tools.js
@@ -11,13 +11,14 @@
    /**
     * 显示消息
     * @param msg
     * @param [duration=2000]
     */
    static toast(msg) {
    static toast(msg, duration = 2000) {
        Taro.showToast({
            title: msg,
            icon: 'none',
            mask: true,
            duration: 2000,
            duration,
        });
    }