保存进度!

This commit is contained in:
2026-01-05 19:19:08 +08:00
parent 49a8256638
commit cde2478f05
3 changed files with 375 additions and 513 deletions

View File

@@ -0,0 +1,26 @@
/**
* @Author: Kane Wang <wangkane@qq.com>
* @Date: 2026-01-05 10:42:42
* @LastEditors: Kane Wang
* @LastModified: 2026-01-05 19:18:56
* @FilePath: src/utils/regulatory_utils.ts
* @Description:
*
* Copyright (c) 2025 by Kane All rights reserved
*/
import { service } from "@/utils/api/request.ts";
import { API_URL } from "@/utils/config.ts";
import { type RegulatoryData, type RegulatoryFile } from "@/types/regulatory/regulatory.ts";
interface AddNewRegulatoryResponse
{
success: boolean;
message: string;
}
function addNewRegulatory( regulatory: RegulatoryData, render: any ): void
{
const url = API_URL.URL_UPLOAD_FILE;
}
export {addNewRegulatory, type AddNewRegulatoryResponse};