中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

vue使用element-ui中的Notification自定義按鈕并實現關閉功能的案例分析

發布時間:2021-02-07 13:00:07 來源:億速云 閱讀:1816 作者:小新 欄目:web開發

這篇文章主要介紹vue使用element-ui中的Notification自定義按鈕并實現關閉功能的案例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

vue 使用element-ui中的Notification自定義按鈕并實現關閉功能及如何處理多個通知

使用element-ui中的Notification,只有一個message屬性是有很大的操作空間,其余的都是寫死的,無法進行擴展,達不到想要的效果。所以只能在message上下功夫。

在element-ui官方文檔中可以看到Notification中的message屬性是可以處理VNode的所以我們可以使用VNode來達到我們需要的效果。

如何關閉通知呢?

當創建通知的時候,會返回該通知的實例,通過該實例的close方法可以將通知關閉。

那么當有多個通知顯示在屏幕上時,如何關閉特定彈窗的呢?

創建一個字典,字典的key是message的Id,value是顯示該消息的通知的實例。從而可以關閉特定的通知。代碼如下。

import mainTable from './mixin/mainTable';
import systemMenu from './template/system-menu';
import headerRow from './template/header';
export default {
  name: 'xxxxx',
  data() {
    return {
      //使用messageId作為彈窗的key,用來獲取彈窗的實例,以對對應彈窗進行操作
      notifications: {}
    };
  },
  mounted() {
    this.$messageWebsocket.websocketApi.initWebSocket(this.$store.state.login.userInfo.userInfo.id, this.openMessageTips);
  },
  methods: {
    //關閉單個通知
    closeNotification(id, operateCode, message){
      this.notifications[message.messageId].close();
      delete this.notifications[message.messageId];
    },
    //關閉所有通知
    closeAllNotification(){
      let _this = this;
      for (let key in _this.notifications) {
        _this.notifications[key].close();
        delete _this.notifications[key];
      }
    },
    //打開一個新的通知
    openMessageTips(message){
      let _this = this;
      this.closeAllNotification();
      let notify = this.$notify({
        title: '三高協診消息',
        position: 'bottom-right',
        showClose: false,
        dangerouslyUseHTMLString: true,
        message: this.$createElement('div', null,
          [
            this.$createElement('div', null, [this.$createElement('span', null, message.content)]),
            this.$createElement('div', null,
              [
                this.$createElement(
                  'button',
                  {
                    style: {
                      padding: '10px 18px',
                      margin: '10px 12px 0px 2px',
                      textAlign: 'center',
                      textDecoration: 'none',
                      display: 'inline-block',
                      webkitTransitionDuration: '0.4s',
                      transitionDuration: '0.4s',
                      cursor: 'pointer',
                      backgroundColor: 'white',
                      color: 'black',
                      border: '2px solid #e7e7e7',
                    },
                    on: {
                      mouseout: function(e){
                        e.target.style.backgroundColor = 'white';
                      },
                      mouseover: function(e){
                        e.target.style.backgroundColor = '#e7e7e7'
                      },
                      click: _this.closeNotification.bind(_this, 1, 1, message)
                    }
                  },
                  "查看"
                ),
                this.$createElement(
                  'button',
                  {
                    style: {
                      padding: '10px 18px',
                      margin: '10px 2px 0px 12px',
                      textAlign: 'center',
                      textDecoration: 'none',
                      display: 'inline-block',
                      webkitTransitionDuration: '0.4s',
                      transitionDuration: '0.4s',
                      cursor: 'pointer',
                      backgroundColor: 'white',
                      color: 'black',
                      border: '2px solid #e7e7e7',
                    },
                    on: {
                      //鼠標移出的回調
                      mouseout: function(e){
                        e.target.style.backgroundColor = 'white';
                      },
                      //鼠標移入的回調
                      mouseover: function(e){
                        e.target.style.backgroundColor = '#e7e7e7'
                      },
                      click: _this.closeNotification.bind(_this, 1, 2, message)
                    }
                  },
                  "稍后提醒(五分鐘后)"
                )
              ]
            )
          ]
        ),
        duration: 0,
      });
      //將messageId和通知實例放入字典中
      this.notifications[message.messageId] = notify;
    }
  }
};

以上是“vue使用element-ui中的Notification自定義按鈕并實現關閉功能的案例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

宜黄县| 新建县| 虎林市| 且末县| 德保县| 永宁县| 麻江县| 温泉县| 电白县| 洮南市| 德清县| 江源县| 衢州市| 尖扎县| 垫江县| 嘉禾县| 贡山| 铜山县| 民乐县| 商南县| 沂源县| 大庆市| 海南省| 渭南市| 木里| 灵武市| 津南区| 嘉鱼县| 信宜市| 扶沟县| 大城县| 高阳县| 威远县| 河南省| 临猗县| 邵武市| 海阳市| 和林格尔县| 武宣县| 公主岭市| 前郭尔|