feat: 新增考勤排班管理页面

This commit is contained in:
admin
2026-01-24 19:07:34 +08:00
parent 8c1224999d
commit c89af4c6a3
99 changed files with 13547 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
'use strict'
/**
* Creates a new URL by combining the specified URLs
*
* @param {string} baseURL The base URL
* @param {string} relativeURL The relative URL
* @returns {string} The combined URL
*/
export default function combineURLs(baseURL, relativeURL) {
return relativeURL
? `${baseURL.replace(/\/+$/, '')}/${relativeURL.replace(/^\/+/, '')}`
: baseURL
}