feat: 任务中心-导入/导出

This commit is contained in:
rd
2025-07-17 17:01:06 +08:00
parent 744fbffef5
commit 62d27268c4
7 changed files with 685 additions and 597 deletions

View File

@ -268,6 +268,11 @@ const getAccountDetail = async () => {
const handleBatchImport = async () => {
try {
if (!file.value) {
AMessage.warning('请上传要导入的文件');
return;
}
const formData = new FormData();
formData.append('file', file.value);