This commit is contained in:
wangshiming
2021-12-13 10:43:03 +08:00
parent d13b27e76b
commit cc7f7c7649
23 changed files with 572 additions and 354 deletions

View File

@ -0,0 +1,16 @@
import { Injectable, Injector } from '@angular/core';
import { BaseService } from '../../services/core/base.service';
@Injectable({
providedIn: 'root'
})
export class DictSelectService extends BaseService {
constructor(public injector: Injector) {
super(injector);
}
getDictList(url: string, params = {}) {
return this.request(url, params);
}
}