This commit is contained in:
Taric Xin
2021-12-02 17:35:43 +08:00
parent d1467d4f45
commit 436dd750d3
18 changed files with 2900 additions and 10 deletions

View File

@ -5,6 +5,14 @@ import { BaseService } from 'src/app/shared/services';
providedIn: 'root'
})
export class SystemService extends BaseService {
$api_getAllFunctionInfoByAppId: string = '';
$api_getRoleTemplateInfo: string = '';
$api_getFunctionButtonInfo: string = '';
$api_getFunctionDataInfo: string = '';
$api_getAppList: string = '';
$api_getRoleTemplateListByAppId: string = '';
$api_getRoleInfo: string = '';
$api_updateRoleInfo: string = '';
constructor(public injector: Injector) {
super(injector);
}