使用jsx写的vue自定义报表组件
有改进建议或 bug 请提 issue
导入
import { staticTable, rowEditableTable, mutilTable } from "custom-ele-table";
<staticTable :tableData="tableData" />
<mutilTable ref="TEST_NODE" @TableDataChange="changeDataHandler" :firstThClickHandler="triggerFn" :isFirstThEableClick="true" :isReadOnly="isMutilReadOnly" :tableData="tableDatas_1" :tableHeader="tableHeader_1" :bodyNotShowProps="['code','id']" uniqueKey="code" />
<rowEditableTable @TableDataChange="rowEditTableDataChangeHandler" :tableData="edit_tableData" :tableHeader="edit_tableHeader" :bodyNotShowProps="['code']" uniqueKey="code" />
属性 | 说明 | 类型 | 默认值 | staticTable | rowEditableTable | mutilTable |
---|---|---|---|---|---|---|
tableData | 表体数据 | Array | [] | ✔️ | ✔️ | ✔️ |
tableHeader | 表头数据 | Array | [] | ❌ | ✔️ | ✔️ |
tableBorderColor | 表格边框颜色 | String | #ddd | ✔️ | ✔️ | ✔️ |
cellHeight | 单元格高度 | Number | 40 | ✔️ | ✔️ | ✔️ |
bodyNotShowProps | 表体不显示的属性 | Array | [] | ❌ | ✔️ | ✔️ |
uniqueKey | 每一行的唯一标识(如 code,id) | String | ❌ | ✔️ | ✔️ | |
firstThClickHandler | 点击表头首个 th 触发事件 | Function | / | ❌ | ✔️ | ✔️ |
isFirstThEableClick | firstThClickHandler 属性是否可用 | Boolean | false | ❌ | ✔️ | ✔️ |
firstThStyle | 表头首个 th 样式 | Object | {} | ❌ | ✔️ | ✔️ |
isReadOnly | 该表格是否只读 | Boolean | false | ❌ | ✔️ | ✔️ |
bodyEmptyTips | 表体无数据显示的提示语 | String | 暂无数据 | ❌ | ✔️ | ✔️ |
headerStyle | header 样式 | Object | {background: “rgb(230, 242, 246)”,color: “#333”} | ✔️ | ✔️ | ✔️ |
cellStyle | body 单元格样式 | Object | {background: “#fff”,color: “#333”} | ✔️ | ✔️ | ✔️ |
calcCellStyle | 公式计算结果的单元格样式 | Object | {background: “#999”,color: “#fff”} | ❌ | ✔️ | ✔️ |
方法 | 说明 | staticTable | rowEditableTable | mutilTable |
---|---|---|---|---|
TableDataChange | 表体数据变化回调方法 | ❌ | ✔️ | ✔️ |
直接操作 ref 节点方法 | 说明 | staticTable | rowEditableTable | mutilTable |
---|---|---|---|---|
this.$refs.TEST_NODE.reCalculate() | 表体数据公式重新计算 | ❌ | ❌ | ✔️ |