修复任务提交与弹窗交互问题
This commit is contained in:
@ -61,6 +61,14 @@ enum MaterialMediaType: Int, CaseIterable, Sendable, Equatable {
|
||||
case .video: 1
|
||||
}
|
||||
}
|
||||
|
||||
/// 云盘文件类型,视频为 1、图片为 2。
|
||||
var cloudFileType: Int {
|
||||
switch self {
|
||||
case .image: 2
|
||||
case .video: 1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// 素材列表项,对齐 Android `MaterialItemEntity`。
|
||||
|
||||
Reference in New Issue
Block a user