vue读取本地excel文件并渲染到列表页面

1.安装插件(版本0.18.5)

npm i xlsx

2.封装插件

<template>
  <div class="container">
    <slot></slot>
  </div>
</template>

<script>
import * as XLSX from 'xlsx'
export default {
  name: 'ReadExcel',
  props: {
    filePath: {
      type: String,
      default: ''
    }
  },
  mounted() {
    this.readExcel()
  },
  methods: {
    readExcel() {
      // 假设你的xlsx文件位于public目录下,并命名为'example.xlsx'
      // console.log('filePath', this.filePath)
      // 使用fetch获取public下的文件
      fetch(this.filePath)
        .then(res => res.arrayBuffer())
        .then(data => {
          // 读取xlsx文件
          const workbook = XLSX.read(data, { type: 'buffer' })
          // 获取第一个工作表
          const firstSheetName = workbook.SheetNames[0]
          const worksheet = workbook.Sheets[firstSheetName]
          // 将工作表转换为JSON
          const tableData = XLSX.utils.sheet_to_json(worksheet)
          this.$emit('getData', tableData)
        })
    }
  }
}
</script>

3.页面使用(filePath文件路径为public下的user.xlsx)

<template>
  <div class="app-container">
    <ReadExcel filePath="/user.xlsx" @getData="getData">
      <el-table :data="tableData" border style="width: 100%">
        <el-table-column align="center" prop="用户编号" label="用户编号" />
        <el-table-column align="center" prop="用户名称" label="用户名称" />
        <el-table-column align="center" prop="用户昵称" label="用户昵称" />
        <el-table-column align="center" prop="部门" label="部门" />
        <el-table-column align="center" prop="手机号码" label="手机号码" />
      </el-table>
      <div class="pagination" style="display: flex; justify-content: flex-end; margin-top: 20px">
        <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :page-sizes="[5, 10, 15, 20]" :page-size="listQuery.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="tableData.length" />
      </div>
    </ReadExcel>
  </div>
</template>

<script>
import ReadExcel from '@/components/ReadExcel'
export default {
  name: 'User',
  components: {
    ReadExcel
  },
  data() {
    return {
      listQuery: {
        pageNum: 1,
        pageSize: 5
      },
      data: []
    }
  },
  computed: {
    tableData() {
      return this.data.slice((this.listQuery.pageNum - 1) * this.listQuery.pageSize, this.listQuery.pageNum * this.listQuery.pageSize)
    }
  },
  methods: {
    getData(val) {
      this.data = val
    },
    handleSizeChange(val) {
      this.listQuery.pageSize = val
    },
    handleCurrentChange(val) {
      this.listQuery.pageNum = val
    }
  }
}
</script>
相关推荐
聊无生12 分钟前
JavaSrcipt 函数高级
开发语言·前端·javascript
xiyusec32 分钟前
HTML基础
前端·html
好开心331 小时前
javaScript交互案例2
开发语言·前端·javascript·html·ecmascript·交互
xChive1 小时前
优化表单交互:在 el-select 组件中嵌入表格显示选项
前端·vue.js·交互·element-plus
tian-ming1 小时前
(十八)JavaWeb后端开发案例——会话/yml/过滤器/拦截器
java·开发语言·前端
duansamve1 小时前
WebGIS地图框架有哪些?
javascript·gis·openlayers·cesium·mapbox·leaflet·webgis
_jacobfu1 小时前
mac2024 安装node和vue
前端·javascript·vue.js
Ztiddler1 小时前
【npm设置代理-解决npm网络连接error network失败问题】
前端·后端·npm·node.js·vue
三天不学习1 小时前
前端工程化-node/npm/babel/polyfill/webpack 一文速通
前端·webpack·npm
羽羽Ci Ci1 小时前
axios vue.js
前端·javascript·vue.js