公告板
版本库
活动
搜索
登录
H5
/
americanContainer
美国集装箱用户端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
md5加密
hejianhao
2025-01-10
e6eb5dccecce12a0b6dacf21c8fa2904c896dbaa
[H5/americanContainer.git]
/
src
/
utils
/
utils.js
1
2
3
4
5
6
7
8
9
10
export function generateVerificationCode() {
const characters = '123456789abcdefghijkmnpqrstuvwxyABCDEFGHJKLMNPQRSTUVWXY';
let code = '';
for (let i = 0; i < 4; i++) {
code += characters.charAt(Math.floor(Math.random() * characters.length));
}
return code;
}