browserfields 必须是对象 {exclouded:[], cwidth:{}},写成数组会让 xls2ui 崩:
AttributeError: 'list' object has no attribute 'alters'
崩溃点之后的表全部不生成 → 页面 500 invalid path。
格式对照 pipeline_core/json/llm.json。
26 lines
675 B
JSON
26 lines
675 B
JSON
{
|
|
"tblname": "acctres_usage",
|
|
"title": "账号资源用量",
|
|
"params": {
|
|
"sortby": "created_at",
|
|
"browserfields": {
|
|
"exclouded": [
|
|
"id",
|
|
"usages"
|
|
],
|
|
"cwidth": {}
|
|
},
|
|
"editexclouded": [
|
|
"id",
|
|
"created_at",
|
|
"updated_at",
|
|
"created_by"
|
|
],
|
|
"editable": {
|
|
"new_data_url": "{{entire_url('./add_acctres_usage.dspy')}}",
|
|
"update_data_url": "{{entire_url('./update_acctres_usage.dspy')}}",
|
|
"delete_data_url": "{{entire_url('./delete_acctres_usage.dspy')}}"
|
|
}
|
|
}
|
|
}
|