Excel导入组件的封装以及使用页面点击弹出该弹框

封装的组件

<template>
  <el-dialog
    width="500px"
    title="员工导入"
    :visible="showExcelDialog"
    @close="$emit('update:showExcelDialog', false)"
  >
    <el-row type="flex" justify="center">
      <div class="upload-excel">
        <input
          ref="excel-upload-input"
          class="excel-upload-input"
          type="file"
          accept=".xlsx, .xls"
        >
        <div class="drop">
          <i class="el-icon-upload" />
          <el-button type="text">下载导入模板el-button>
          <span>将文件拖到此处或
            <el-button type="text">点击上传el-button>
          span>
        div>
      div>
    el-row>
    <el-row type="flex" justify="end">
      
      <el-button size="mini" type="primary" @click="$emit('update:showExcelDialog', false)">取消el-button>
    el-row>
  el-dialog>
template>
<script>

export default {
  props: {
    showExcelDialog: {
      type: Boolean,
      default: false
    }
  },
  methods: {

  }
}
script>

<style scoped lang="scss">
    .upload-excel {
      display: flex;
      justify-content: center;
      margin: 20px;
      width: 360px;
      height: 180px;
      align-items: center;
      color: #697086;
      .excel-upload-input {
        display: none;
        z-index: -9999;
      }
      .btn-upload,
      .drop {
        border: 1px dashed #dcdfe6;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 160px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .drop {
        line-height: 40px;
        color: #bbb;
        i {
          font-size: 60px;
          display: block;
          color: #c0c4cc;
        }
      }
    }
style>

Excel导入组件的封装以及使用页面点击弹出该弹框_第1张图片
在这里插入图片描述
在需要使用弹框页面
html

 <el-button size="mini" @click="showExcelDialog = true">excel导入el-button>
 <import-excel :show-excel-dialog.sync="showExcelDialog" />

css

import ImportExcel from './components/import-excel.vue'
export default {
  components: {
    ImportExcel
  },
	data () {
	 return  {
	     showExcelDialog: false // 控制excel的弹层显示和隐藏
	 }
   }
 }

你可能感兴趣的:(excel)