-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
piexlMax(奇淼
committed
Nov 9, 2024
1 parent
be41997
commit 4e4bf93
Showing
74 changed files
with
14,655 additions
and
13,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,113 +1,139 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="zh-cn" class="transition-colors"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<meta content="Gin,Vue,Admin.Gin-Vue-Admin,GVA,gin-vue-admin,后台管理框架,vue后台管理框架,gin-vue-admin文档,gin-vue-admin首页,gin-vue-admin" name="keywords" /> | ||
<link rel="icon" href="favicon.ico"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> | ||
<meta | ||
content="Gin,Vue,Admin.Gin-Vue-Admin,GVA,gin-vue-admin,后台管理框架,vue后台管理框架,gin-vue-admin文档,gin-vue-admin首页,gin-vue-admin" | ||
name="keywords" | ||
/> | ||
<link rel="icon" href="favicon.ico" /> | ||
<title></title> | ||
<style> | ||
.transition-colors{ | ||
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; | ||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | ||
transition-duration: 150ms; | ||
.transition-colors { | ||
transition-property: color, background-color, border-color, | ||
text-decoration-color, fill, stroke; | ||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); | ||
transition-duration: 150ms; | ||
} | ||
body { | ||
margin: 0; | ||
--64f90c3645474bd5: #409eff; | ||
} | ||
body{ | ||
margin: 0; | ||
--64f90c3645474bd5: #409eff; | ||
#gva-loading-box { | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
width: 100vw; | ||
} | ||
#loading-text { | ||
position: absolute; | ||
bottom: calc(50% - 100px); | ||
left: 0; | ||
width: 100%; | ||
text-align: center; | ||
color: #666; | ||
font-size: 14px; | ||
} | ||
#gva-loading-box{ | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
width: 100vw; | ||
} | ||
#loading-text { | ||
position: absolute; | ||
bottom: calc(50% - 100px); | ||
left: 0; | ||
width: 100%; | ||
text-align: center; | ||
color: #666; | ||
font-size: 14px; | ||
} | ||
#loading { | ||
position: absolute; | ||
top: calc(50% - 20px); | ||
left: calc(50% - 20px); | ||
position: absolute; | ||
top: calc(50% - 20px); | ||
left: calc(50% - 20px); | ||
} | ||
@keyframes loader { | ||
0% { left: -100px } | ||
100% { left: 110%; } | ||
0% { | ||
left: -100px; | ||
} | ||
100% { | ||
left: 110%; | ||
} | ||
} | ||
#box { | ||
width: 50px; | ||
height: 50px; | ||
background: var(--64f90c3645474bd5); | ||
animation: animate .5s linear infinite; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
border-radius: 3px; | ||
width: 50px; | ||
height: 50px; | ||
background: var(--64f90c3645474bd5); | ||
animation: animate 0.5s linear infinite; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
border-radius: 3px; | ||
} | ||
@keyframes animate { | ||
17% { border-bottom-right-radius: 3px; } | ||
25% { transform: translateY(9px) rotate(22.5deg); } | ||
50% { | ||
transform: translateY(18px) scale(1,.9) rotate(45deg) ; | ||
border-bottom-right-radius: 40px; | ||
} | ||
75% { transform: translateY(9px) rotate(67.5deg); } | ||
100% { transform: translateY(0) rotate(90deg); } | ||
17% { | ||
border-bottom-right-radius: 3px; | ||
} | ||
25% { | ||
transform: translateY(9px) rotate(22.5deg); | ||
} | ||
50% { | ||
transform: translateY(18px) scale(1, 0.9) rotate(45deg); | ||
border-bottom-right-radius: 40px; | ||
} | ||
75% { | ||
transform: translateY(9px) rotate(67.5deg); | ||
} | ||
100% { | ||
transform: translateY(0) rotate(90deg); | ||
} | ||
} | ||
#shadow { | ||
width: 50px; | ||
height: 5px; | ||
background: #000; | ||
opacity: 0.1; | ||
position: absolute; | ||
top: 59px; | ||
left: 0; | ||
border-radius: 50%; | ||
animation: shadow .5s linear infinite; | ||
width: 50px; | ||
height: 5px; | ||
background: #000; | ||
opacity: 0.1; | ||
position: absolute; | ||
top: 59px; | ||
left: 0; | ||
border-radius: 50%; | ||
animation: shadow 0.5s linear infinite; | ||
} | ||
.dark #shadow{ | ||
background: #fff; | ||
.dark #shadow { | ||
background: #fff; | ||
} | ||
@keyframes shadow { | ||
50% { | ||
transform: scale(1.2,1); | ||
} | ||
50% { | ||
transform: scale(1.2, 1); | ||
} | ||
} | ||
|
||
</style> | ||
</head> | ||
</head> | ||
|
||
<body> | ||
<body> | ||
<div id="gva-loading-box"> | ||
<div id="loading"> | ||
<div id="shadow"></div> | ||
<div id="box"></div> | ||
</div> | ||
<div id="loading-text"></div> | ||
<div id="loading"> | ||
<div id="shadow"></div> | ||
<div id="box"></div> | ||
</div> | ||
<div id="loading-text"></div> | ||
</div> | ||
<div id="app"></div> | ||
<script type="module" src="./src/main.js"></script> | ||
<script src="node_modules/js-cookie/dist/js.cookie.js"></script> | ||
<script src="src/locales/lang.js"></script> | ||
<script> | ||
var lang = Cookies.get('language') | ||
// 如果没有设置语言,则默认为中文 | ||
if(i18n[lang]) { | ||
document.getElementById("loading-text").innerText = i18n[lang].sysLoading | ||
} else{ | ||
document.getElementById("loading-text").innerText = i18n.zh.sysLoading | ||
const i18n = { | ||
en: { | ||
sysLoading: 'System is loading, please wait...' | ||
}, | ||
zh: { | ||
sysLoading: '系统正在加载,请稍候...' | ||
}, | ||
ar: { | ||
sysLoading: 'جارٍ تحميل النظام، يرجى الانتظار' | ||
} | ||
</script> | ||
</body> | ||
} | ||
|
||
var lang = Cookies.get('language') | ||
// 如果没有设置语言,则默认为中文 | ||
if (i18n[lang]) { | ||
document.getElementById('loading-text').innerText = | ||
i18n[lang].sysLoading | ||
} else { | ||
document.getElementById('loading-text').innerText = i18n.zh.sysLoading | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,77 @@ | ||
{ | ||
"name": "gin-vue-admin", | ||
"version": "2.7.7", | ||
"private": true, | ||
"scripts": { | ||
"serve": "node openDocument.js && vite --host --mode development", | ||
"build": "vite build --mode production", | ||
"limit-build": "npm install increase-memory-limit-fixbug cross-env -g && npm run fix-memory-limit && node ./limit && npm run build", | ||
"preview": "vite preview", | ||
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit" | ||
}, | ||
"dependencies": { | ||
"@element-plus/icons-vue": "^2.3.1", | ||
"@form-create/designer": "^3.2.6", | ||
"@form-create/element-ui": "^3.2.10", | ||
"@vue-office/docx": "^1.6.2", | ||
"@vue-office/excel": "^1.7.11", | ||
"@vue-office/pdf": "^2.0.2", | ||
"@vueuse/core": "^11.0.3", | ||
"@wangeditor/editor": "^5.1.23", | ||
"@wangeditor/editor-for-vue": "^5.1.12", | ||
"ace-builds": "^1.36.4", | ||
"axios": "^1.7.7", | ||
"chokidar": "^4.0.0", | ||
"core-js": "^3.38.1", | ||
"default-passive-events": "^2.0.0", | ||
"echarts": "5.5.1", | ||
"element-plus": "^2.8.5", | ||
"highlight.js": "^11.10.0", | ||
"js-cookie": "^3.0.5", | ||
"marked": "14.1.1", | ||
"marked-highlight": "^2.1.4", | ||
"mitt": "^3.0.1", | ||
"nprogress": "^0.2.0", | ||
"path": "^0.12.7", | ||
"pinia": "^2.2.2", | ||
"qs": "^6.13.0", | ||
"screenfull": "^6.0.2", | ||
"sortablejs": "^1.15.3", | ||
"spark-md5": "^3.0.2", | ||
"tailwindcss": "^3.4.10", | ||
"vform3-builds": "^3.0.10", | ||
"vite-auto-import-svg": "^1.1.0", | ||
"vue": "^3.5.7", | ||
"vue-echarts": "^7.0.3", | ||
"vue-router": "^4.4.3", | ||
"vue3-ace-editor": "^2.2.4", | ||
"vuedraggable": "^4.1.0", | ||
"vue-i18n": "^9.4.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "^7.25.1", | ||
"@eslint/js": "^9.14.0", | ||
"@vitejs/plugin-legacy": "^5.4.2", | ||
"@vitejs/plugin-vue": "^5.1.4", | ||
"@vue/cli-plugin-babel": "~5.0.8", | ||
"@vue/cli-plugin-eslint": "~5.0.8", | ||
"@vue/cli-plugin-router": "~5.0.8", | ||
"@vue/cli-plugin-vuex": "~5.0.8", | ||
"@vue/cli-service": "~5.0.8", | ||
"@vue/compiler-sfc": "^3.5.1", | ||
"babel-plugin-import": "^1.13.8", | ||
"chalk": "^5.3.0", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^9.14.0", | ||
"eslint-plugin-vue": "^9.30.0", | ||
"sass": "^1.78.0", | ||
"terser": "^5.31.6", | ||
"vite": "^5.4.3", | ||
"vite-plugin-banner": "^0.8.0", | ||
"vite-plugin-importer": "^0.2.5", | ||
"vite-plugin-vue-devtools": "^7.4.4", | ||
"@intlify/unplugin-vue-i18n": "^1.2.0", | ||
"@intlify/vue-i18n-loader": "^4.2.0" | ||
} | ||
"name": "gin-vue-admin", | ||
"version": "2.7.7", | ||
"private": true, | ||
"scripts": { | ||
"serve": "node openDocument.js && vite --host --mode development", | ||
"build": "vite build --mode production", | ||
"limit-build": "npm install increase-memory-limit-fixbug cross-env -g && npm run fix-memory-limit && node ./limit && npm run build", | ||
"preview": "vite preview", | ||
"fix-memory-limit": "cross-env LIMIT=4096 increase-memory-limit" | ||
}, | ||
"dependencies": { | ||
"@element-plus/icons-vue": "^2.3.1", | ||
"@form-create/designer": "^3.2.6", | ||
"@form-create/element-ui": "^3.2.10", | ||
"@vue-office/docx": "^1.6.2", | ||
"@vue-office/excel": "^1.7.11", | ||
"@vue-office/pdf": "^2.0.2", | ||
"@vueuse/core": "^11.0.3", | ||
"@wangeditor/editor": "^5.1.23", | ||
"@wangeditor/editor-for-vue": "^5.1.12", | ||
"ace-builds": "^1.36.4", | ||
"axios": "^1.7.7", | ||
"chokidar": "^4.0.0", | ||
"core-js": "^3.38.1", | ||
"default-passive-events": "^2.0.0", | ||
"echarts": "5.5.1", | ||
"element-plus": "^2.8.5", | ||
"highlight.js": "^11.10.0", | ||
"js-cookie": "^3.0.5", | ||
"marked": "14.1.1", | ||
"marked-highlight": "^2.1.4", | ||
"mitt": "^3.0.1", | ||
"nprogress": "^0.2.0", | ||
"path": "^0.12.7", | ||
"pinia": "^2.2.2", | ||
"qs": "^6.13.0", | ||
"screenfull": "^6.0.2", | ||
"sortablejs": "^1.15.3", | ||
"spark-md5": "^3.0.2", | ||
"tailwindcss": "^3.4.10", | ||
"vform3-builds": "^3.0.10", | ||
"vite-auto-import-svg": "^1.1.0", | ||
"vue": "^3.5.7", | ||
"vue-echarts": "^7.0.3", | ||
"vue-i18n": "^9.4.1", | ||
"vue-router": "^4.4.3", | ||
"vue3-ace-editor": "^2.2.4", | ||
"vuedraggable": "^4.1.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "^7.25.1", | ||
"@eslint/js": "^9.14.0", | ||
"@intlify/unplugin-vue-i18n": "^1.2.0", | ||
"@intlify/vue-i18n-loader": "^4.2.0", | ||
"@vitejs/plugin-legacy": "^5.4.2", | ||
"@vitejs/plugin-vue": "^5.1.4", | ||
"@vue/cli-plugin-babel": "~5.0.8", | ||
"@vue/cli-plugin-eslint": "~5.0.8", | ||
"@vue/cli-plugin-router": "~5.0.8", | ||
"@vue/cli-plugin-vuex": "~5.0.8", | ||
"@vue/cli-service": "~5.0.8", | ||
"@vue/compiler-sfc": "^3.5.1", | ||
"babel-plugin-import": "^1.13.8", | ||
"chalk": "^5.3.0", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^9.14.0", | ||
"eslint-plugin-vue": "^9.30.0", | ||
"prettier": "^3.3.3", | ||
"sass": "^1.78.0", | ||
"terser": "^5.31.6", | ||
"vite": "^5.4.3", | ||
"vite-plugin-banner": "^0.8.0", | ||
"vite-plugin-importer": "^0.2.5", | ||
"vite-plugin-vue-devtools": "^7.4.4" | ||
} | ||
} |
Oops, something went wrong.