文件上传支持自定义存储表;将文件管理独立file_upload表,与sys分离。

This commit is contained in:
thinkgem
2023-10-30 08:47:01 +08:00
parent 98876b588e
commit 51542c11ed
2 changed files with 17 additions and 57 deletions

View File

@@ -37,7 +37,7 @@ var p = {
imageThumbName: imageThumbName!'', // 如果开启了图片缩略图这里可以指定缩略图名称例如150x150.jpg v5.4.2
serviceUpload: serviceUpload!(ctxAdmin+'/file/upload'), // 上传文件后台服务 v4.1.5
serviceDownload: serviceDownload!(ctxAdmin+'/file/download/'), // 下载文件后台服务 v4.1.5
serviceDownload: serviceDownload!(ctxAdmin+'/file/download'), // 下载文件后台服务 v4.1.5
serviceFileList: serviceFileList!(ctxAdmin+'/file/fileList'), // 查询文件后台服务 v4.1.5
extendParams: extendParams!'', // 提交的上传扩展参数例如n1:'v1',n2:'v2'后台接受fileEntity.getFileUploadParams().getExtend() v4.1.3