uapi/json/upapp.json
yumoqing 98df132a78 feat: add uapi subtable to upapp CRUD
After removing uapiset, upapp directly manages its uapi records via
apisetid. Added uapi as a subtable in upapp.json so users can view/edit
APIs directly from the upapp detail page.
2026-05-20 15:38:48 +08:00

48 lines
992 B
JSON

{
"tblname":"upapp",
"params":{
"title":"上位系统",
"description":"上位系统",
"sortby":"name",
"logined_userorgid":"ownerid",
"confidential_fields":["secretkey"],
"browserfields":{
"exclouded":["ownerid"],
"alters":{}
},
"editexclouded":["ownerid"],
"subtables":[
{
"field":"upappid",
"subtable": "upappkey",
"title": "APIKEY"
},
{
"field":"apisetid",
"subtable": "uapi",
"title": "API"
}
],
"toolbar":{
"tools":[
{
"name":"jumpin",
"label":"跳转到",
"selected_data": true
}
]
},
"binds":[
{
"wid":"self",
"event":"jumpin",
"actiontype":"urlwidget",
"target":"self",
"options":{
"url":"{{entire_url('/uapi/jump_in.dspy')}}"
}
}
]
}
}