本文整理汇总了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);
}
示例2: goToPhotoList
//写真一覧画面へ
goToPhotoList(fab: FabContainer) {
fab.close();
this.navCtrl.push(PhotoList);
}
示例3: navToTraffic
navToTraffic(fab: FabContainer) {
fab.close();
this.navCtrl.push(TrafficPageComponent);
}
示例4: goToCompetitorInput
//競合店入力トップへ
goToCompetitorInput(fab: FabContainer) {
fab.close();
console.log("go to CompetitorInputPageComponent");
this.navCtrl.push(CompetitorInputPageComponent);
}
示例5:
this.treeStyle.onClickNode = (node: TreeNode) => {
this.selectNode = node;
if (this.fab) {
this.fab.close();
}
this.backService.hold();
};
示例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');
}
示例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();
}
示例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();
}
});
示例9: changeBoolean
private changeBoolean(key: string) {
this.fab.close();
this.treeService[key] = !this.treeService[key];
this.treeStyle.show();
this.backService.trackAction('tree', key);
}