(component): 同步 next 改动

This commit is contained in:
就眠儀式
2022-10-21 21:23:10 +08:00
parent 0cce0587f6
commit 9d46063321
12 changed files with 191 additions and 79 deletions

View File

@@ -0,0 +1,12 @@
export function nextId() {
var s: any = [];
var hexDigits = "0123456789abcdef";
for (var i = 0; i < 36; i++) {
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
}
s[14] = "4";
s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);
s[8] = s[13] = s[18] = s[23] = "-";
var uuid = s.join("");
return uuid;
}