feat: 新增表格边框样式控制功能
支持10种边框样式: - all: 全部边框(默认) - none: 无边框 - no-outer: 无外边线 - no-horizontal: 无横线 - no-vertical: 无竖线 - no-inner: 无内部线 - no-inner-horizontal: 无内部横线 - no-inner-vertical: 无内部竖线 - outer-only: 仅外边框 - header-only: 仅表头分隔线 前端和API均已支持
This commit is contained in:
@@ -673,6 +673,7 @@ function generateTable() {
|
||||
theme: document.getElementById('tableTheme').value,
|
||||
fontSize: parseInt(document.getElementById('tableFontSize').value) || 14,
|
||||
stripeRows: document.getElementById('stripeRows').checked,
|
||||
borderStyle: document.getElementById('borderStyle').value,
|
||||
pixelRatio: 2
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user