2025-03-27 18:42:54 vscode task自动提交

This commit is contained in:
etoai 2025-03-27 18:42:54 +08:00
parent 60e1a659c9
commit b225100f4b
8 changed files with 2178 additions and 11 deletions

23
.vscode/tasks.json vendored
View File

@ -16,25 +16,34 @@
"problemMatcher": [
"$tsc"
],
"dependsOn": ["frontend build"]
"dependsOn": [
"frontend build"
]
},
{
"label": "Git Commit & Push",
"type": "shell",
"command": "cd D:\\dvlyadmin_pro\\dvlyadmin_pro; git add . ; git commit -m \\\"$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') vscode task自动提交\\\"; git push",
"problemMatcher": ["$tsc"],
"problemMatcher": [
"$tsc"
],
"options": {
"cwd": "${workspaceFolder}"
"cwd": "${workspaceFolder}"
},
"dependsOn": ["dist copy"]
"dependsOn": [
"dist copy"
]
},
{
"label": "curl webhook",
"type": "shell",
"command": "python -c \\\"import requests; r=requests.post('https://47.112.174.207:8989/hook?access_key=q1kbVssnJzhWrrW7T1CDefq58wKs9DL70gWHznYNFH8TBwI9', verify=False); print(r.status_code)\\\"",
"problemMatcher": ["$tsc"],
"dependsOn": ["Git Commit & Push"]
"problemMatcher": [
"$tsc"
],
"dependsOn": [
"Git Commit & Push"
]
}
]

View File

@ -16,7 +16,7 @@
}
}</style><script>var _hmt = _hmt || [];
var hmid = "33e0b6798fd8809c21ef51bc99e3149e";
(function () { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?" + hmid; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script><script defer="defer" src="static/js/vendors.43bd63f4.js"></script><script defer="defer" src="static/js/app.b5863ad2.js"></script><link href="static/css/vendors.25c1fb87.css" rel="stylesheet"><link href="static/css/app.193d5b92.css" rel="stylesheet"></head><body><noscript><strong>Sorry django-vue-lyadmin (dvlyadmin_pro) doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><script>var dark = window.localStorage.getItem('siteTheme');
(function () { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?" + hmid; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();</script><script defer="defer" src="static/js/vendors.43bd63f4.js"></script><script defer="defer" src="static/js/app.a6fbb485.js"></script><link href="static/css/vendors.25c1fb87.css" rel="stylesheet"><link href="static/css/app.6a0d1a2a.css" rel="stylesheet"></head><body><noscript><strong>Sorry django-vue-lyadmin (dvlyadmin_pro) doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><script>var dark = window.localStorage.getItem('siteTheme');
if(dark && dark=="dark"){
document.documentElement.classList.add("dark")
}</script><div id="app" class="lyadmin"><div class="app-loading"><div class="app-loading__logo"><img src="static/img/logo.png"/></div><div class="app-loading__loader"></div><div class="app-loading__title">加载中</div></div></div></body></html>

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -1,7 +1,7 @@
//API DOMAIN
const API_DOMAIN = process.env.NODE_ENV === 'development' ? "127.0.0.1:8000" : "django-vue-lyadmin-pro.lybbn.cn"
const API_DOMAIN = process.env.NODE_ENV === 'development' ? "127.0.0.1:8000" : "47.112.174.207:7070"
// 接口地址
const API_BASEURL = process.env.NODE_ENV === 'development' ? "http://"+ API_DOMAIN +"/api/" : "https://"+ API_DOMAIN +"/api/"
const API_BASEURL = process.env.NODE_ENV === 'development' ? "http://"+ API_DOMAIN +"/api/" : "http://"+ API_DOMAIN +"/api/"
//版本号
const APP_VER = require('../../package.json').version
//是否开启代理

View File

@ -2,7 +2,7 @@
<div class="login_bg">
<div class="login_adv" style="background-image: url(static/img/auth_banner.jpg);">
<div class="login_adv__title">
<h2>django-vue-lyadmin pro版</h2>
<h2>django-vue-lyadmin pro版testV2</h2>
<p>{{ $t('login.describe') }}</p>
</div>
<div class="login_adv__mask"></div>