Vue dialog模態框的封裝方法

前言

這個是基於vue2的模態框封裝,仿照elementUI而寫的組件。

效果如圖

首先我們需要一個遮罩層

<template>
    <div class="myDialog">
        <div v-if="visable" class="dialog_mask" @click="close"></div>
    </div>
</template>
<style>
  .dialog_mask {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.418);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 122;
  }
</style>

然後是主體部分

<!-- 模態框內容部分 -->
      <div v-if="visable" class="dialog_window" @mousedown="moveDialog">
        <header>
          <!-- 傳入的標題 -->
          <h5>{{ title }}</h5>
          <!-- x號關閉 -->
          <span @click="close">x</span>
        </header>
        <!-- 插槽插入中間的內容 -->
        <div class="ctx">
          <slot></slot>
        </div>
        <!-- 插槽插入底部按鈕 -->
        <div class="footer">
          <slot name="footer"></slot>
        </div>
</div>

props傳入的值

props: {
    visable: {  // 數據顯示隱藏
      type: Boolean,
      default: false,
    },
    title: {  // 標題
      type: String,
    },
    move: {  // 是否可拖動
      type: Boolean,
      default: false,
    }
  },

對應的事件

methods: {
    close() {  // 關閉功能
      this.$emit("update:visable", false); // .sync修飾符  父子組件同步更新
      this.callBack(this.visable);
    },
    moveDialog(e) {  // 拖動
      if (!this.move) return false;
      let odiv = e.target;
 
      let disX = e.clientX - odiv.offsetLeft;
      let disY = e.clientY - odiv.offsetTop;
 
      document.onmousemove = (e) => {
        let left = e.clientX - disX;
        let top = e.clientY - disY;
 
        odiv.style.left = left + "px";
        odiv.style.top = top + "px";
      };
      document.onmouseup = (e) => {
        document.onmousemove = null;
        document.onmousedown = null;
      };
    },
  },

以上就是dialog的封裝。

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: