上传文件至 前端

This commit is contained in:
Songzhufu 2024-05-24 02:55:12 +00:00
parent 09a2700e40
commit 0e994bb6c1
5 changed files with 27862 additions and 0 deletions

23
前端/.gitignore vendored Normal file
View File

@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

5
前端/babel.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

19
前端/jsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}

27775
前端/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

40
前端/package.json Normal file
View File

@ -0,0 +1,40 @@
{
"name": "vue-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^1.2.0",
"china-area-data": "^5.0.1",
"cn-region-picker": "^1.1.9",
"core-js": "^3.8.3",
"element-china-area-data": "^5.0.2",
"element-ui": "^2.15.10",
"i": "^0.3.7",
"js-cookie": "^3.0.1",
"npm": "^8.19.3",
"sass": "^1.69.7",
"vue": "^2.6.14",
"vue-pdf": "^4.3.0",
"vue-region-picker": "^3.0.1",
"vue-router": "^3.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"sass-loader": "^13.2.0",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}