当前位置:   article > 正文

uniapp 几种常用提示框_uniapp 成功提示

uniapp 成功提示

1、成功提示框

  1. uni.showToast({
  2. title: '提交成功',
  3. duration: 2000
  4. });

2、加载框

  1. uni.showLoading({
  2. title: '加载中'
  3. });
  4. setTimeout(function () {
  5. uni.hideLoading();
  6. }, 2000);

3、去掉图标,只显示文字提示框 

 

  1. uni.showToast({
  2. title: '请填写员工工号',
  3. icon:'none',
  4. duration: 2000
  5. });

4、模态弹窗 

  1. uni.showModal({
  2. title: '提示',
  3. content: '这是一个模态弹窗',
  4. success: function (res) {
  5. if (res.confirm) {
  6. console.log('用户点击确定');
  7. } else if (res.cancel) {
  8. console.log('用户点击取消');
  9. }
  10. }
  11. });

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/985606
推荐阅读
相关标签
  

闽ICP备14008679号