请假功能内容修改

This commit is contained in:
2025-12-03 09:59:20 +08:00
parent 3eaadca4b6
commit d05cfe8c30
9 changed files with 2065 additions and 1745 deletions

View File

@@ -1,8 +1,12 @@
// 应用全局配置
module.exports = {
// 统一通过本机 Nginx 反向代理访问后端
// 若在同一台机器调试:使用 localhost:8066
// 若手机在同一局域网:替换为本机局域网 IP例如 172.16.96.111:8066
// 页面在 https://zhxg.gxsdxy.cn 下访问,接口同域同协议以避免 CORS
// baseUrl: 'https://zhxg.gxsdxy.cn/prod_api',
// baseUrl: 'http://172.16.96.111:8085',
// baseUrl: 'http://192.168.211.22:8085',
// baseUrl: 'https://zhxg.gxsdxy.cn/prod_api',
// 若本地/内网以 HTTP 访问页面,可改为:
baseUrl: 'http://localhost:8085',
// 应用信息
appInfo: {
@@ -28,7 +32,7 @@ module.exports = {
/**
* 开启cas
*/
casEnable: false,
casEnable: true,
/**
* 单点登录url
@@ -38,5 +42,5 @@ module.exports = {
/**
* 单点登出url
*/
caslogoutUrl: 'https://rsso.gxsdxy.cn/logout?service=http://zhxg.gxsdxy.cn/prod_api_test/getinfo',
caslogoutUrl: 'http://rsso.gxsdxy.cn/logout?service=http://zhxg.gxsdxy.cn/prod_api_test/getinfo',
}