当前位置:   article > 正文

uniapp 提示框(showToast、showModal、showLoading)_uni.showtoast

uni.showtoast

一、showToast

  1. uni.showToast({
  2. title: '没有更多了',//标题 必填
  3. icon: 'none',//图标
  4. image: '',//自定义图标的本地路径(app端暂不支持gif)
  5. mask: true,//是否显示透明蒙层,防止触摸穿透,默认:false
  6. duration: '',//提示的延迟时间,单位毫秒,默认:1500
  7. position: '',//纯文本轻提示显示位置,填写有效值后只有 title 属性生效,且不支持通过 uni.hideToast 隐藏。有效值详见下方说明。 App
  8. success: '',//接口调用成功的回调函数
  9. fail: '',//接口调用失败的回调函数
  10. complete: '',//接口调用结束的回调函数(调用成功、失败都会执行)
  11. });

1)icon的区别

  1. openToast(){
  2. uni.showToast({
  3. title: 'success',
  4. icon: 'success',
  5. });
  6. },

 

二、showModal

1)通常使用

  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. });

  1. openModel() {
  2. uni.showModal({
  3. title: '提示',
  4. content: '这是一个模态框!',
  5. editable: true,
  6. placeholderText: '显示输入框',
  7. });
  8. },

注:显示输入框时,content作为输入框value出现。

2)详细说明

  1. uni.showModel({
  2. title: '',//提示的标题
  3. content: '',//提示的内容
  4. showCancel: '',//是否显示取消按钮,默认为 true
  5. cancelText: '',//取消按钮的文字,默认为"取消"
  6. cancelColor: '',//取消按钮的文字颜色,默认为"#000000"
  7. confirmText: '',//确定按钮的文字,默认为"确定"
  8. confirmColor: '',//确定按钮的文字颜色
  9. editable: '',//是否显示输入框
  10. placeholderText String 否 显示输入框时的提示文本
  11. success: '',//接口调用成功的回调函数
  12. fail: '',//接口调用失败的回调函数
  13. complete: '',//接口调用结束的回调函数(调用成功、失败都会执行)
  14. });

三、showLoading 和 hideLoading

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

详细说明

  1. uni.showLoading({
  2. title: '',//提示的文字内容,显示在loading的下方
  3. mask: '',//Boolean 是否显示透明蒙层,防止触摸穿透,默认:false
  4. success: function (res) {},//接口调用成功的回调函数
  5. fail: '',//接口调用失败的回调函数
  6. complete: '',//接口调用结束的回调函数(调用成功、失败都会执行)
  7. });

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

闽ICP备14008679号