本文整理汇总了TypeScript中entcore.template.close方法的典型用法代码示例。如果您正苦于以下问题:TypeScript template.close方法的具体用法?TypeScript template.close怎么用?TypeScript template.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类entcore.template
的用法示例。
在下文中一共展示了template.close方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
$scope.showFavoriteForm = function() {
$scope.display.searchmobile = true;
$scope.display.creatingFavorite = true;
template.close('list');
template.close('dominosUser');
template.close('dominosGroup');
template.open('list', 'favorite-form');
$scope.scroolTop();
}
示例2: function
scope.redirectToPreviousCopy = function() {
template.close("main");
let index = findCopyIndexOfCurrentCopy() - 1;
$timeout(function(){
$location.path('/subject/copy/view/'+ scope.subjectScheduled.subject_id + '/' + subjectCopyList[index].id + '/');
},50);
};
示例3: async
$scope.updateFolder = async () => {
await $scope.targetFolder.update();
await $scope.refreshFolders();
$scope.lightbox.show = false;
template.close('lightbox');
$scope.$apply();
}
示例4: function
$scope.unblockUsers = function () {
directoryService.blockUsers(false, selection).then(() => {
$scope.reloadClassroom($scope.selectedClass);
selection.splice(0, selection.length);
notify.info('classAdmin.unblock.success');
}).catch(() => notify.error('classAdmin.unblock.error'));
template.close('lightbox');
}