添加查询id是否存在
This commit is contained in:
parent
af71702840
commit
78507c2b91
|
@ -60,6 +60,8 @@ export interface GraphicQueryStore {
|
|||
code: string,
|
||||
type: string
|
||||
): T[];
|
||||
|
||||
checkIdExist(v: number): boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -208,4 +210,8 @@ export class GraphicStore implements GraphicQueryStore {
|
|||
this.relationManage.clear();
|
||||
this.store.clear();
|
||||
}
|
||||
|
||||
checkIdExist(id: number) {
|
||||
return this.store.has(id)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue