mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-27 15:50:58 +00:00
fix: nextId append the id of document
This commit is contained in:
parent
15c8988a24
commit
80a5c93934
@ -131,7 +131,7 @@ export class DocumentModel {
|
|||||||
* 生成唯一id
|
* 生成唯一id
|
||||||
*/
|
*/
|
||||||
nextId() {
|
nextId() {
|
||||||
return (++this.seqId).toString(36).toLocaleLowerCase();
|
return this.id + (++this.seqId).toString(36).toLocaleLowerCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user