微信小程序自定义弹窗组件

业务背景:弹窗有时字体较多,超过7个字,不适用wx.showToast.

组件代码

csharp 复制代码
<view class="toast-box {{isShow? 'show':''}}" animation="{{animationData}}">
  <view class="toast-content" >
    <view class="toast-img">
      <block wx:if="{{type==='success'}}">
        <image class="toast-icon" src="/images/correct.png" />
      </block>
      <block wx:if="{{type==='fail'}}">
        <image class="toast-icon" src="/images/warn.png" />
      </block>
    </view>
    <view class="toast-title">{{title}}</view>
    <view style="width:100%;border-top: 1rpx solid #ddd;"></view>
    <view bindtap="handleClose" style="width: 100%;text-align: center;color: #666;line-height: 80rpx;">
    确 定
    </view>
  </view>
</view>

/* components/toast/toast.wxss */

csharp 复制代码
.toast-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 11;
  display: none;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
 }
 .show{
  display: block;
 }
 .toast-content {
  position: absolute;
  left: 50%;
  top: 45%;
  width:600rpx;
  /*height: 250rpx;*/
  border-radius: 10rpx;
  box-sizing: bordre-box;
  transform: translate(-50%, -50%);
  background: white;
 }
 .toast-img{
   width: 100%;
   height: 100rpx;
   padding-top: 15rpx;
   box-sizing: bordre-box;
   text-align: center;
 }
 .toast-icon{
   width: 100rpx;
   height: 100rpx;
 }
 .toast-title {
   width: 100%;
   padding: 30rpx;
   line-height: 45rpx;
   color: #666;
   text-align: center;
   font-size: 28rpx;
   box-sizing: border-box;
 }

// components/toast/toast.js

csharp 复制代码
Component({
  properties: {
  },
  data: {
   type: 'fail',
   title: '',
   isShow: false,
   animationData: ''
  },
  methods: {
   showToast: function (data) {
    const that = this;
    if (this._showTimer) {
     clearTimeout(this._showTimer)
    }
    if (this._animationTimer) {
     clearTimeout(this._animationTimer)
    }
    // display需要先设置为block之后,才能执行动画
    this.setData({
     title: data.title,
     type: data.type,
     isShow: true,
    });
    this._animationTimer = setTimeout(() => {
     const animation = wx.createAnimation({
      duration: 500,
      timingFunction: 'ease',
      delay: 0
     })
     animation.opacity(1).step();
     that.setData({
      animationData: animation.export(),
     })
    }, 50)
    this._showTimer = setTimeout(function () {
     that.hideToast();
     if (data.compelete && (typeof data.compelete === 'function')) {
      data.compelete()
     }
    }, data.duration)
   },
   handleClose(){
    this.hideToast();
   },
   hideToast: function () {
    if (this._hideTimer) {
     clearTimeout(this._hideTimer)
    }
    let animation = wx.createAnimation({
     duration: 200,
     timingFunction: 'ease',
     delay: 0
    })
    animation.opacity(0).step();
    this.setData({
     animationData: animation.export(),
    })
    this._hideTimer = setTimeout(() => {
     this.setData({
      isShow: false,
     })
    }, 0)
   }
  }
 })

引用部分

csharp 复制代码
// json
 {
  "usingComponents": {
    "vas-toast": "../../components/toast/toast"
  }
}
// html
<vas-toast id='toast'></vas-toast>
js
  onShow: function () {
    this.prompt = this.selectComponent("#toast");
  },
that.prompt.showToast({
            type: 'fail',
            title: res.data.errmsg,
            duration: 4000,
            compelete: function () {}
          })
相关推荐
丁总学Java9 分钟前
微信小程序,点击bindtap事件后,没有跳转到详情页,有可能是app.json中没有正确配置页面路径
微信小程序·小程序·json
说私域1 小时前
基于开源 AI 智能名片、S2B2C 商城小程序的用户获取成本优化分析
人工智能·小程序
mosen8681 小时前
Uniapp去除顶部导航栏-小程序、H5、APP适用
vue.js·微信小程序·小程序·uni-app·uniapp
qq22951165022 小时前
微信小程序的汽车维修预约管理系统
微信小程序·小程序·汽车
尚梦9 小时前
uni-app 封装刘海状态栏(适用小程序, h5, 头条小程序)
前端·小程序·uni-app
小飞哥liac12 小时前
微信小程序的组件
微信小程序
stormjun13 小时前
Java基于微信小程序的私家车位共享系统(附源码,文档)
java·微信小程序·共享停车位·私家车共享停车位小程序·停车位共享
paopaokaka_luck14 小时前
基于Spring Boot+Vue的助农销售平台(协同过滤算法、限流算法、支付宝沙盒支付、实时聊天、图形化分析)
java·spring boot·小程序·毕业设计·mybatis·1024程序员节
Bessie23416 小时前
微信小程序eval无法使用的替代方案
微信小程序·小程序·uni-app
shenweihong16 小时前
javascript实现md5算法(支持微信小程序),可分多次计算
javascript·算法·微信小程序