更新记录
1.0.1(2023-05-18)
下载此版本
添加了使用方法
1.0.0(2023-05-18)
下载此版本
初始版本,有点可以支持多文字
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 app-vue app-nvue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
√ |
√ |
√ |
√ |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
lys-showToast
自定义toast,主要解决原版文字长度的问题
- 提供,上,中,下三个显示区域
- 文字字数不限制
- 可配置显示时间
- 可配置回调
-
参数名称 |
参数类型 |
默认值 |
可选值 |
msg |
string |
|
|
type |
string |
bottom |
top、midele、bottom |
time |
number |
1600 |
|
callback |
function |
|
|
引入方法如下:
<lys-toast ref="toast"></lys-toast>
使用方法如下一:
this.$refs.toast.show('hello word!');
使用方法如下二:
this.$refs.toast.show({
msg:'hello word!',
type:'top',
time:3000,
callback:()=>{
// nothing to do
}
});