vue+element 分页选择并且导出

vue+element 分页选择并且导出

  1. 表格结构
    a). 给type="selection"的列加上 reserve-selection=“true”
    reserve-selection仅对 type=selection 的列有效,类型为 Boolean,为 true 则会在数据更新之后保 留之前选中的数据(需指定 row-key)
    b) Table Attributes属性加上row-key属性
<el-table
        :data="tableData"
        :row-key="getRowKey"
        :header-cell-style="{background:'#F9FAFC',color:'#000'}"
        border
        style="width: 100%"
        @selection-change="handleSelectionChange">
        <el-table-column :reserve-selection="true" type="selection" width="55"/>
</el-table>
<el-button size="small" @click="exportExcelFile">导出选中</el-button>
  1. 逻辑代码
data() {
	return {
		multipleSelection: []
	}
}
methods: {
	getRowKey(row) {
	  // 返回一个唯一标识
      return row.spuid
    },
    // 将选择的数据进行存储
    handleSelectionChange() {
		this.multipleSelection = val
	},
	// 导出组件
	exportExcelFile() {
      if (this.multipleSelection.length <= 0) {
        this.$message({
          message: '请先选择需要导出的数据',
          type: 'warning'
        })
        return false
      }
      this.$confirm(`确定要导出${this.multipleSelection.length}数据`, '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        const tHeader = ['商品编号', '商品图片', '商品名称', '商品类目', 'SKU数量', '商品品牌', '供应商', '创建时间']
        const filterVal = ['spusn', 'pic', 'title', 'cateTitle', 'skuNum', 'brandName', 'supplierName', 'createtime']
        exportExcel(tHeader, filterVal, this.multipleSelection, this.formatJson, '采购商品列表').then(() => {})
      }).catch(() => {
        console.log('取消')
      })
    },
}
  1. 导出组件点击====>点击这里
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值