请教大家两个问题:
ps:表格全部是动态数据。
<template>
<el-table-column :prop="'persons_'+cols.remark" :label="cols.title" :width="cols.width?cols.width:150" align="center">
<template v-if="cols.children">
<loop-column v-for="(item, index) in cols.children" :key="index" :cols="item">
</loop-column>
</template>
</el-table-column>
</template>
<script>
export default {
name: "loopColumn",
props: {
cols: {
type: Object,
default: () => {
return {}
}
}
}
}
<script>
1
murmur 2021-03-12 16:35:49 +08:00 1
excel 导出都是手写样式,一个单元格一个调,dom 转 excel 玩具都不算
我们是买了第三方报表工具实现的这个功能 |
2
toesbieya 2021-03-12 16:42:32 +08:00 1
|
3
putaozhenhaochi 2021-03-12 16:48:57 +08:00 1
推给后端 /逃
|
5
supuwoerc OP |