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


TypeScript ionic-angular.FabContainer類代碼示例

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


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

示例1: goToZoneInterview

 //ゾーン設定・インタビュートップへ
 goToZoneInterview(fab: FabContainer) {
   fab.close();
   console.log("go to map input page");
   this.navCtrl.push(ZoneinterviewPageComponent);
 }
開發者ID:r-matsumura,項目名稱:poc-candidate-stores,代碼行數:6,代碼來源:home.ts

示例2: goToPhotoList

 //寫真一覧畫麵へ
 goToPhotoList(fab: FabContainer) {
   fab.close();
   this.navCtrl.push(PhotoList);
   
 }
開發者ID:r-matsumura,項目名稱:poc-candidate-stores,代碼行數:6,代碼來源:home.ts

示例3: navToTraffic

 navToTraffic(fab: FabContainer) {
   fab.close();
   this.navCtrl.push(TrafficPageComponent);
 }
開發者ID:r-matsumura,項目名稱:poc-candidate-stores,代碼行數:4,代碼來源:home.ts

示例4: goToCompetitorInput

 //競合店入力トップへ
 goToCompetitorInput(fab: FabContainer) {
   fab.close();
   console.log("go to CompetitorInputPageComponent");
   this.navCtrl.push(CompetitorInputPageComponent);
 }
開發者ID:r-matsumura,項目名稱:poc-candidate-stores,代碼行數:6,代碼來源:home.ts

示例5:

		this.treeStyle.onClickNode = (node: TreeNode) => {
			this.selectNode = node;
			if (this.fab) {
				this.fab.close();
			}
			this.backService.hold();
		};
開發者ID:xuender,項目名稱:family,代碼行數:7,代碼來源:tree-show.ts

示例6: NodeMerger

	paste() {
		this.fab.close();
		this.addHistory();
		new NodeMerger(this.selectNode).merge(this.treeService.copyNode);
		this.familyTree.ua = new Date();
		this.treeStyle.show();
		this.backService.trackAction('node', 'paste');
	}
開發者ID:xuender,項目名稱:family,代碼行數:8,代碼來源:tree-show.ts

示例7: Date

	editNode() {
		this.fab.close();
		this.treeService.editNode(this.selectNode, this.familyTree)
		.then((node) => {
			if (node) {
				this.addHistory();
				Object.assign(this.selectNode, node);
				this.familyTree.ua = new Date();
				this.treeStyle.show();
			}
		});
		this.backService.touch();
	}
開發者ID:xuender,項目名稱:family,代碼行數:13,代碼來源:tree-show.ts

示例8: strToNode

		.then((str: string) => {
			if (str && str !== this.copyStr) {
				try {
					this.treeService.copyNode = strToNode(str);
					this.copyStr = str;
					this.fab.close();
				} catch (e) {
					console.error(e);
					this.backService.touch();
				}
			} else {
				this.backService.touch();
			}
		});
開發者ID:xuender,項目名稱:family,代碼行數:14,代碼來源:tree-show.ts

示例9: changeBoolean

	private changeBoolean(key: string) {
		this.fab.close();
		this.treeService[key] = !this.treeService[key];
		this.treeStyle.show();
		this.backService.trackAction('tree', key);
	}
開發者ID:xuender,項目名稱:family,代碼行數:6,代碼來源:tree-show.ts


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