This commit is contained in:
ymq1 2025-06-26 17:00:47 +08:00
parent 53ab59b40c
commit bc3ecf7fd5
3 changed files with 46 additions and 0 deletions

3
json/build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/bash
xls2ui -m ../models -o ../wwwroot filemgr *.json

21
json/folder.json Normal file
View File

@ -0,0 +1,21 @@
{
"tblname": "folder",
"uitype":"tree",
"title":"目录",
"params":{
"idField":"id",
"textField":"name",
"sortby":"name",
"editable":true,
"browserfields":{
"alters":{}
},
"edit_exclouded_fields":[],
"parentField":"parentid",
"toolbar":{
},
"binds":[
]
}
}

22
json/folderinfo.json Normal file
View File

@ -0,0 +1,22 @@
{
"tblname": "folderinfo",
"title":"目录信息",
"params": {
"sortby":"name",
"logined_userorgid":"orgid",
"browserfields": {
"exclouded": ["id", "biztype", "orgid" ],
"cwidth": {}
},
"editexclouded": [
"id", "orgid"
],
"subtables": [
{
"field":"fiid",
"title":"目录",
"subtable":"folder"
}
]
}
}