This commit is contained in:
2026-09-24 16:25:22 +08:00
commit 7428184f01
1198 changed files with 314515 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
export type xFileSListType = {
name:string,
type:string,
id:string,
uri:string,
/** web平台文件对象 */
file?:any,
/** 个人用户自定数据 */
request?:any,
/** 安卓机/ios机下面的真实sd路径 */
realFilePath:string,
/** uniapp应用协议文件路径,可用uni.getFileSystemManager进行删除或者查询到 */
cacheFilePath:string,
/** 文件大小 */
size?:number
/**
* 0等待,1失败,2成功,3上传中,4超过大小。
*/
status?:0|1|2|3|4
}
// #ifndef MP
export type fileListType = xFileSListType
// #endif
// #ifdef MP
export type fileListType = any
// #endif