feat(ReorganizeDialog): 添加文件操作整理方式选项

This commit is contained in:
jxxghp
2024-11-23 21:32:27 +08:00
parent 964aa29d12
commit 8873d8372d
2 changed files with 10 additions and 8 deletions

View File

@@ -71,3 +71,10 @@ export const storageDict = storageOptions.reduce((dict, item) => {
dict[item.value] = item.title
return dict
}, {} as Record<string, string>)
export const transferTypeOptions = [
{ title: '复制', value: 'copy' },
{ title: '移动', value: 'move' },
{ title: '硬链接', value: 'link' },
{ title: '软链接', value: 'softlink' },
]