Feat:香小智对接
This commit is contained in:
@@ -65,6 +65,19 @@ export default {
|
||||
let timestamp = new Date(date).getTime();
|
||||
let now = new Date().getTime();
|
||||
return timestamp - now;
|
||||
},
|
||||
|
||||
//生成n位数字字母混合字符串
|
||||
generateMixed(n) {
|
||||
let chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
||||
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
|
||||
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
|
||||
let res = "";
|
||||
for (let i = 0; i < n; i++) {
|
||||
let id = Math.floor(Math.random() * 36);
|
||||
res += chars[id];
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user