dashboard
repositories
filestore
activity
search
login
main
/
srs-police-affairs
上饶市警务平台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat:独栋显示调整
shuishen
2026-02-10
abd285e6d013128aa57c9e30e851b2aa76d60ec5
[srs-police-affairs.git]
/
src
/
components
/
map
/
label.js
1
2
3
4
5
6
7
function* generateNumbersGenerator(start, end) {
for (let i = start; i <= end; i++) {
yield i.toString().padStart(2, "0");
}
}
export const label = Array.from(generateNumbersGenerator(1, 1000));