update uuid
This commit is contained in:
@ -46,6 +46,8 @@ import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||
|
||||
import CRender from '@jiaminghi/c-render'
|
||||
|
||||
import { getUuid } from '../../../util'
|
||||
|
||||
export default {
|
||||
name: 'DvWaterLevelPond',
|
||||
props: {
|
||||
@ -53,12 +55,7 @@ export default {
|
||||
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 {
|
||||
gradientId: `water-level-pond-${uuid}`,
|
||||
|
||||
|
Reference in New Issue
Block a user