()
| 15 | |
| 16 | // 获取当前月份日期 |
| 17 | export function getCurrentMonthDate() { |
| 18 | const now = new Date() |
| 19 | const month = String(now.getMonth() + 1).padStart(2, '0') |
| 20 | const day = String(now.getDate()).padStart(2, '0') |
| 21 | return `${month}${day}` |
| 22 | } |
| 23 | |
| 24 | // 从package.json读取基础版本号 |
| 25 | export function getBaseVersion() { |