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

封装的组件

html 复制代码
<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">
      <!-- update:props属性名,值 直接修改 .sync修饰符的属性值 -->
      <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>


在需要使用弹框页面

html

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

css

javascript 复制代码
import ImportExcel from './components/import-excel.vue'
export default {
  components: {
    ImportExcel
  },
	data () {
	 return  {
	     showExcelDialog: false // 控制excel的弹层显示和隐藏
	 }
   }
 }
相关推荐
Yvonne97812 小时前
WPS OFFICE制作多级下拉菜单
excel·wps
奔波霸的伶俐虫15 小时前
navicat导出表结构到Excel 带字段备注
数据库·oracle·excel
出门喝奶茶21 小时前
通过 VBA 在 Excel 中自动提取拼音首字母
excel
guodashen0071 天前
安卓使用JExcelApi读取Excel文件
android·excel·jexcelapi
后端小肥肠1 天前
FastExcel + Java:打造高效灵活的Excel数据导入导出解决方案
java·开发语言·spring boot·后端·excel
三皮仔1 天前
安装WPS后,导致python调用Excel.Application异常,解决办法
python·excel·wps
一路向北North2 天前
apache-poi导出excel数据
apache·excel
overmind2 天前
[oeasy]python064_命令行工作流的总结_vim_shell_python
python·vim·excel
hmywillstronger2 天前
【EXCEL】【VBA】查找sheet中小于阈值的值并提取单元格对应的行列对应编号(Distance Check查找距离过小的点对)
excel
默萧笙故2 天前
在 C# 中,处理 Excel 和 PDF 文件的库有很多。以下是一些比较常用的选择
pdf·excel