feat: 新增柱状图图表

This commit is contained in:
mtruning
2022-01-25 22:29:44 +08:00
parent 7a3af81d7a
commit 43e557253f
4 changed files with 59 additions and 12 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import debounce from 'lodash/debounce'
* * 生成一个不重复的ID
* @param { Number } randomLength
*/
export function getUUID(randomLength: number = 10) {
export function getUUID(randomLength = 10) {
return Number(
Math.random().toString().substr(2, randomLength) + Date.now()
).toString(36)