91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決vue集成sweetalert2提示組件的問題

發布時間:2022-03-04 14:13:01 來源:億速云 閱讀:430 作者:小新 欄目:開發技術

這篇文章主要介紹如何解決vue集成sweetalert2提示組件的問題,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

如何解決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提示組件的問題”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

鄂伦春自治旗| 北流市| 灵寿县| 永德县| 沐川县| 桑植县| 铁力市| 德庆县| 西充县| 隆德县| 宁海县| 绥宁县| 加查县| 广饶县| 文昌市| 崇明县| 泰安市| 远安县| 合川市| 布拖县| 宁蒗| 乌兰县| 冕宁县| 崇信县| 东港市| 江城| 当雄县| 陆川县| 平阳县| 泰宁县| 达尔| 年辖:市辖区| 仪征市| 武威市| 文登市| 特克斯县| 铜川市| 奉化市| 邛崃市| 襄垣县| 江都市|