欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

聊聊vue集成sweetalert2提示组件的问题

程序员文章站 2022-03-16 21:08:47
目录一、项目集成1. 引入方式 cdn引入方式:2. 确认框封装3. 提示框封装4. 确认框使用5. 消息提示框使用6.项目效果一、项目集成官网链接:https://sweetalert2.githu...

聊聊vue集成sweetalert2提示组件的问题
聊聊vue集成sweetalert2提示组件的问题

一、项目集成

官网链接:https://sweetalert2.github.io

聊聊vue集成sweetalert2提示组件的问题

案例

聊聊vue集成sweetalert2提示组件的问题
聊聊vue集成sweetalert2提示组件的问题

1. 引入方式 cdn引入方式:

在index.html中全局引入

<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>

聊聊vue集成sweetalert2提示组件的问题

位置:

聊聊vue集成sweetalert2提示组件的问题

npm安装方式:

npm install sweetalert2

2. 确认框封装

confirm = {
    show: function (message, callback) {
        swal.fire({
            title: '确认 ?',
            text: message,
            icon: 'warning',
            showcancelbutton: true,
            confirmbuttoncolor: '#3085d6',
            cancelbuttoncolor: '#d33',
            confirmbuttontext: '是的, 已确认!'
        }).then((result) => {
            if (result.isconfirmed) {
                if (callback) {
                    callback()
                }
            }
        })
    }
}

3. 提示框封装

toast = {
    success: function (message) {
        swal.fire({
            position: 'top-end',
            icon: 'success',
            title: message,
            showconfirmbutton: false,
            timer: 3000
        })
    },

    error: function (message) {
        swal.fire({
            position: 'top-end',
            icon: 'error',
            title: message,
            showconfirmbutton: false,
            timer: 3000
        })
    },

    warning: function (message) {
        swal.fire({
            position: 'top-end',
            icon: 'warning',
            title: message,
            showconfirmbutton: false,
            timer: 3000
        })
    }
};

4. 确认框使用

/**
     * 点击【删除】
     */
    del(id) {
      let _this = this
      confirm.show("删除后不可恢复, 确认删除 !", function () {
        loading.show()
        _this.$api.delete('http://127.0.0.1:9000/business/admin/chapter/delete/' + id).then((res) => {
          loading.hide()
          console.log("删除大章列表结果:", res)
          let resp = res.data
          if (resp.success) {
            _this.list(1)
            swal.fire(
                '删除成功!',
                '删除成功!',
                'success'
            )
          }
        })
      })

5. 消息提示框使用

 /**
     * 点击【保存】
     */
    save() {
      let _this = this
      loading.show()
      _this.$api.post('http://127.0.0.1:9000/business/admin/chapter/save', _this.chapter).then((res) => {
        loading.hide()
        console.log("保存大章列表结果:", res)
        let resp = res.data
        if (resp.success) {
          $("#form-modal").modal("hide")
          _this.list(1)
          toast.success("保存成功!")
        } else {
          toast.warning(resp.message)
        }
      })
    }

6.项目效果

聊聊vue集成sweetalert2提示组件的问题
聊聊vue集成sweetalert2提示组件的问题

到此这篇关于vue 集成 sweetalert2 提示组件的文章就介绍到这了,更多相关vue 集成 sweetalert2内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!