vue 自动匹配table导出为excel 组件(内无excel方法)

36 篇文章 0 订阅
5 篇文章 1 订阅
<template>
    <el-button @click="exportExcel" type="primary" icon="icon-daochu">导出</el-button>
</template>

<script>
import {postExcelFile} from '@/utils/public_func'
export default {
    props: {
        refName: {
            type: String,
            default: 'table'
        },
        conditions: Object,
        url: String
    },
    methods: {
        // 导出excel
        exportExcel () {
            let table = this.findTable(this)
            if(!table){
                this.$message({ message: '没找到可导出的表格', type: 'warning' })
                return 
            }
            const res = table.columns.reduce((t, v) => { // 根据table生成表头与表头变量名
                if (v.property) {
                    t.headsName.push(v.label)
                    t.propsName.push(v.property)
                }
                return t
            }, {headsName: [], propsName: []})
            postExcelFile( // 导出的方法,这里不展示了
                this.$store.state.common.breadcrumbList.at(-1).meta.title,
                res.headsName, 
                res.propsName, 
                Object.entries({ ...this.conditions }), 
                this.$http.adornUrl(this.url)
            )
        },
        findTable(x){ // 遍历实例树查找有无能打印的table
            let vm = x.$parent
            if(vm===undefined) return false
            if(vm.$refs[this.refName]) return vm.$refs[this.refName]
            return this.findTable(vm)
        }
    }
}
</script>

<style>

</style>

用的时候仅需:
1.引用
2.拆分出查询时候的params传入(最好放在computed中)
3.<export-excel :conditions="params" url="xxxxx"/>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值