diff --git a/dist/toast/index.js b/dist/toast/index.js index cac1274b..b48952d9 100644 --- a/dist/toast/index.js +++ b/dist/toast/index.js @@ -1,28 +1,28 @@ module.exports = { showZuiToast(title, timeout) { - var componentToast = this.data.componentToast || {}; - clearTimeout(componentToast.timer); + var zuiToast = this.data.zuiToast || {}; + clearTimeout(zuiToast.timer); // 弹层设置~ - componentToast = { + zuiToast = { show: true, title }; this.setData({ - componentToast + zuiToast }); - componentToast.timer = setTimeout(() => { + zuiToast.timer = setTimeout(() => { this.clearZuiToast(); }, timeout || 3000); }, clearZuiToast() { - var componentToast = this.data.componentToast || {}; - clearTimeout(componentToast.timer); + var zuiToast = this.data.zuiToast || {}; + clearTimeout(zuiToast.timer); this.setData({ - 'componentToast.show': false + 'zuiToast.show': false }); } }; diff --git a/dist/toast/index.wxml b/dist/toast/index.wxml index 5c835e68..3f2bb68a 100644 --- a/dist/toast/index.wxml +++ b/dist/toast/index.wxml @@ -1,3 +1,3 @@ diff --git a/dist/toptips/index.js b/dist/toptips/index.js index 4e58472d..526be4a6 100644 --- a/dist/toptips/index.js +++ b/dist/toptips/index.js @@ -21,7 +21,7 @@ module.exports = { // 展示出topTips this.setData({ - componentTopTips: { + zuiTopTips: { show: true, content, options @@ -31,7 +31,7 @@ module.exports = { // 设置定时器,定时关闭topTips timer = setTimeout(() => { this.setData({ - 'componentTopTips.show': false + 'zuiTopTips.show': false }); timer = undefined; }, options.duration); diff --git a/dist/toptips/index.wxml b/dist/toptips/index.wxml index 1ec925d8..9e00584b 100644 --- a/dist/toptips/index.wxml +++ b/dist/toptips/index.wxml @@ -1,3 +1,3 @@ diff --git a/example/helper/index.wxml b/example/helper/index.wxml index 4220999f..0c5a21df 100644 --- a/example/helper/index.wxml +++ b/example/helper/index.wxml @@ -3,7 +3,7 @@ - pull-right: 往右靠 + zui-pull-right: 往右靠 @@ -15,18 +15,18 @@ - - zui-font-12:字号12 - zui-font-bold:加粗 + + zui-font-12:字号12 + zui-font-bold:再来个加粗 - - zui-font-16:字号16 - zui-font-bold:加粗 + + zui-font-16:字号16 + zui-font-bold:再来个加粗 diff --git a/example/toast/index.wxml b/example/toast/index.wxml index 502cfd71..a7ec390d 100644 --- a/example/toast/index.wxml +++ b/example/toast/index.wxml @@ -12,4 +12,4 @@ - + diff --git a/example/toptips/index.wxml b/example/toptips/index.wxml index 795b6852..ca1a3e11 100644 --- a/example/toptips/index.wxml +++ b/example/toptips/index.wxml @@ -12,4 +12,4 @@ - +