diff --git a/packages/designer/src/document/document-model.ts b/packages/designer/src/document/document-model.ts index a39698001..2b00d5239 100644 --- a/packages/designer/src/document/document-model.ts +++ b/packages/designer/src/document/document-model.ts @@ -131,7 +131,7 @@ export class DocumentModel { * 生成唯一id */ nextId() { - return (++this.seqId).toString(36).toLocaleLowerCase(); + return this.id + (++this.seqId).toString(36).toLocaleLowerCase(); } /**