id转number类型

This commit is contained in:
joylink_zhaoerwei 2023-12-12 15:14:07 +08:00 committed by Yuan
parent 98298af2b2
commit 9de8fbda46

View File

@ -9,12 +9,12 @@ export interface GraphicQueryStore {
/**
* id获取图形
*/
queryById<T extends JlGraphic>(id: number | string): T;
queryById<T extends JlGraphic>(id: number): T;
/**
* id模糊查询图形
* @param id
*/
queryByIdAmbiguous(id: number | string): JlGraphic[];
queryByIdAmbiguous(id: number): JlGraphic[];
/**
*
@ -79,20 +79,15 @@ export class GraphicStore implements GraphicQueryStore {
getAllGraphics(): JlGraphic[] {
return [...this.store.values()];
}
queryById<T extends JlGraphic>(id: number | string): T {
let nid = id;
if (typeof id === 'string') {
nid = parseInt(id);
queryById<T extends JlGraphic>(id: number): T {
const graphic = this.store.get(id) as T;
if (!graphic) throw Error(`未找到id为 [${id}] 的图形.`);
return this.store.get(id) as T;
}
const graphic = this.store.get(nid as number) as T;
if (!graphic) throw Error(`未找到id为 [${nid}] 的图形.`);
return this.store.get(nid as number) as T;
}
queryByIdAmbiguous(id: number | string): JlGraphic[] {
const nid = id + '';
queryByIdAmbiguous(id: number): JlGraphic[] {
const list: JlGraphic[] = [];
this.store.forEach((g) => {
if ((g.id + '').search(nid) >= 0) {
if (Math.abs(g.id - id) <= 10) {
list.push(g);
}
});