feat: add table td border type

This commit is contained in:
Hufe921
2023-09-02 14:35:46 +08:00
parent 7260b6439b
commit d8876b1095
20 changed files with 144 additions and 34 deletions
+10
View File
@@ -419,6 +419,16 @@ instance.command.executeTableTdVerticalAlign(payload: VerticalAlign)
instance.command.executeTableBorderType(payload: TableBorder)
```
## executeTableTdBorderType
功能:表格单元格边框类型
用法:
```javascript
instance.command.executeTableTdBorderType(payload: TdBorder)
```
## executeTableTdBackgroundColor
功能:表格单元格背景色
+2
View File
@@ -63,6 +63,8 @@ interface ILang {
borderAll: string
borderEmpty: string
borderExternal: string
borderTd: string
borderTdBottom: string
}
}
datePicker: {
+1
View File
@@ -54,6 +54,7 @@ interface IElement {
rowspan: number;
verticalAlign?: VerticalAlign;
backgroundColor?: string;
borderType?: TdBorder;
value: IElement[];
}[];
}[];