-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Open
Labels
Description
描述问题:
Table 列样式(className、titleClassName、labelClassName) 设置背景色(bg)不能填满表头
截图或视频:
{
"type": "page",
"body": {
"type": "service",
"api": "/amis/api/mock2/sample?perPage=5",
"body": [
{
"type": "table",
"title": "表格1",
"source": "$rows",
"columns": [
{
"name": "engine",
"label": "Engine"
},
{
"name": "version",
"label": "Version",
"className": "text-primary bg-green-200"
}
]
}
]
}
}
{
"type": "page",
"body": {
"type": "service",
"api": "/amis/api/sample?perPage=5",
"body": [
{
"type": "table2",
"source": "$rows",
"columns": [
{
"title": "Engine",
"name": "engine"
},
{
"title": "Version",
"name": "version",
"className": "text-primary",
"titleClassName": "font-bold bg-green-200"
},
{
"title": "Browser",
"name": "browser"
},
{
"title": "Operation",
"name": "operation",
"type": "button",
"label": "删除",
"size": "sm"
}
]
}
]
}
}
{
"type": "page",
"body": {
"type": "service",
"api": "/amis/api/mock2/sample?perPage=5",
"body": [
{
"type": "table",
"title": "表格1",
"source": "$rows",
"columns": [
{
"name": "engine",
"label": "Engine"
},
{
"name": "version",
"label": "Version",
"className": "text-primary bg-green-200",
"labelClassName": "font-bold bg-green-200"
}
]
}
]
}
}
Reactions are currently unavailable