update uuid
This commit is contained in:
@ -159,6 +159,8 @@ import { randomExtend, getPointDistance } from '../../../util/index'
|
||||
|
||||
import autoResize from '../../../mixin/autoResize'
|
||||
|
||||
import { getUuid } from '../../../util'
|
||||
|
||||
export default {
|
||||
name: 'DvFlylineChartEnhanced',
|
||||
mixins: [autoResize],
|
||||
@ -173,12 +175,7 @@ export default {
|
||||
}
|
||||
},
|
||||
data () {
|
||||
let d = new Date().getTime();
|
||||
const uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
||||
var r = (d + Math.random()*16)%16 | 0;
|
||||
d = Math.floor(d/16);
|
||||
return (c=='x' ? r : (r&0x7|0x8)).toString(16);
|
||||
});
|
||||
const uuid = getUuid();
|
||||
return {
|
||||
ref: 'dv-flyline-chart-enhanced',
|
||||
unique: Math.random(),
|
||||
|
Reference in New Issue
Block a user