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:
2026-07-17 13:37:43 +08:00
parent c6b930b6d6
commit 5f9357a182
3 changed files with 61 additions and 26 deletions
+1
View File
@@ -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
};