保存进度!

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

File diff suppressed because it is too large Load Diff

View File

@@ -10,31 +10,33 @@
},
"dependencies": {
"scss": "^0.2.4",
"vue": "^3.5.24",
"vue-router": "^4.6.3"
"vue": "^3.5.26",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitejs/plugin-vue": "^6.0.2",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vue-office/docx": "^1.6.3",
"@vue-office/excel": "^1.7.14",
"@vue-office/pdf": "^2.0.10",
"@vue/tsconfig": "^0.8.1",
"axios": "^1.13.2",
"element-plus": "^2.11.8",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.6.0",
"element-plus": "^2.13.0",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.22",
"path": "^0.12.7",
"sass": "^1.94.2",
"sass": "^1.97.1",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vite": "^7.3.0",
"vue-demi": "^0.14.10",
"vue-eslint-parser": "^10.2.0",
"vue-pdf-embed": "^2.1.3",
"vue-tsc": "^3.1.5"
"vue-tsc": "^3.2.1"
}
}

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};