dashboard
repositories
filestore
activity
search
login
main
/
srs-police-affairs
上饶市警务平台
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
扫码报警页面模型遮挡图标处理 默认显示影像+轻量处理 阵地管理页面模型遮挡图标处理 从业人员页面模型遮挡图标处理 群众上报页面模型遮挡图标处理 九小场...
shuishen
2024-12-09
d75e47f5a8d2df158a3dd33b7b598a97854ea1df
[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));