script_engine/json/script_engine.json
2026-08-29 12:44:23 +08:00

27 lines
1.1 KiB
JSON

{
"tblname": "script",
"params": {
"listname": "脚本列表",
"browserfields": {
"gridwidth": "100%",
"fields": [
{"field": "script_name", "label": "脚本名称", "width": 150, "searchable": true},
{"field": "script_type", "label": "脚本类型", "width": 100},
{"field": "status", "label": "状态", "width": 80},
{"field": "description", "label": "描述", "width": 220},
{"field": "created_at", "label": "创建时间", "width": 150},
{"field": "updated_at", "label": "更新时间", "width": 150}
]
},
"editexclouded": ["script_name", "script_type", "content", "description", "status"],
"new_data_url": "{{entire_url('../api/script_create.dspy')}}",
"update_data_url": "{{entire_url('../api/script_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/script_delete.dspy')}}",
"editable": {
"new_data_url": "{{entire_url('../api/script_create.dspy')}}",
"update_data_url": "{{entire_url('../api/script_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/script_delete.dspy')}}"
}
}
}