This commit is contained in:
A1300399510
2024-01-05 18:20:39 +08:00
parent 8fac6121c2
commit bb91a032e9
75 changed files with 2121 additions and 1204 deletions

View File

@@ -49,4 +49,14 @@ export const goToURL = (url, isblank = true) => {
aTab.setAttribute('href', url)
if (isblank) aTab.setAttribute('target', "_blank")
aTab.click()
}
}
export const numberToEnclosed = index => {
let obj = {
1: '①',
2: '②',
3: '③',
4: '④',
5: '⑤',
}
return obj[index]
}