Compare commits

..

2 Commits

Author SHA1 Message Date
67df04df6e Merge branch 'main' of git.kaiyuancloud.cn:yumoqing/filemgr 2025-06-26 17:01:11 +08:00
bc3ecf7fd5 bugfix 2025-06-26 17:00:47 +08:00
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"
}
]
}
}