當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript theme.SettingsService類代碼示例

本文整理匯總了TypeScript中@delon/theme.SettingsService的典型用法代碼示例。如果您正苦於以下問題:TypeScript SettingsService類的具體用法?TypeScript SettingsService怎麽用?TypeScript SettingsService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了SettingsService類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: resolve

                           .subscribe((res: any) => {
                               // 應用信息:包括站點名、描述、年份
                                this.settingService.setApp(res.app);
                                // 用戶信息:包括姓名、頭像、郵箱地址
                                this.settingService.setUser(res.user);
                                // ACL:設置權限為全量
                                this.aclService.setFull(true);
                                // 初始化菜單
                                this.menuService.add(res.menu);
                                // i18n:設置默認語言
                                this.i18n.use(this.settingService.layout.lang);
                                // 設置頁麵標題的後綴
                                this.titleService.suffix = res.app.name;

                                resolve(res);
                            }, (err: HttpErrorResponse) => {
開發者ID:mohamedbadr,項目名稱:ng-alain,代碼行數:16,代碼來源:startup.service.ts

示例2:

            ).subscribe(([langData, appData]) => {
                // setting language data
                this.translate.setTranslation(this.i18n.defaultLang, langData);
                this.translate.setDefaultLang(this.i18n.defaultLang);

                // application data
                const res: any = appData;
                // 應用信息:包括站點名、描述、年份
                this.settingService.setApp(res.app);
                // 用戶信息:包括姓名、頭像、郵箱地址
                this.settingService.setUser(res.user);
                // ACL:設置權限為全量
                this.aclService.setFull(true);
                // 初始化菜單
                this.menuService.add(res.menu);
                // 設置頁麵標題的後綴
                this.titleService.suffix = res.app.name;
            },
開發者ID:duxie,項目名稱:ng-alain,代碼行數:18,代碼來源:startup.service.ts

示例3:

 return this.httpClient.get('assets/osharp/app-data.json').map((data: any) => {
   if (!data) {
     return;
   }
   // 應用信息:包括站點名、描述、年份
   this.settingService.setApp(data.app);
   // 用戶信息:包括姓名、頭像、郵箱地址
   // this.settingService.setUser(data.user);
   // ACL:設置權限為全量
   // this.aclService.setFull(true);
   // 初始化菜單
   // this.menuService.add(data.menu);
   // 設置頁麵標題的後綴
   this.titleService.suffix = data.app.name;
 }).toPromise();
開發者ID:Yizongjishi,項目名稱:osharp-ns20,代碼行數:15,代碼來源:startup.service.ts

示例4: toggleCollapsedSidebar

 toggleCollapsedSidebar() {
   this.settings.setLayout('collapsed', !this.settings.layout.collapsed);
 }
開發者ID:jijiechen,項目名稱:openaspnetorg,代碼行數:3,代碼來源:header.component.ts

示例5: change

 change(lang: string) {
     this.tsServ.use(lang, false).subscribe(() => {
         this.menuService.resume();
     });
     this.settings.setLayout('lang', lang);
 }
開發者ID:duxie,項目名稱:ng-alain,代碼行數:6,代碼來源:i18n.component.ts

示例6: toggleCollapsedSideabar

 toggleCollapsedSideabar() {
   const collapsed = !this.settings.layout.collapsed;
   this.settings.setLayout('collapsed', collapsed);
   abp.event.trigger('abp.theme-setting.collapsed', collapsed);
 }
開發者ID:wenxiayili,項目名稱:LTMCompanyNameFree.YoyoCmsTemplate,代碼行數:5,代碼來源:header.component.ts


注:本文中的@delon/theme.SettingsService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。