本文整理汇总了TypeScript中entcore.template类的典型用法代码示例。如果您正苦于以下问题:TypeScript template类的具体用法?TypeScript template怎么用?TypeScript template使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了template类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
$scope.hideFavoriteForm = function() {
$scope.favoriteFormInitSearch();
$scope.display.editingFavorite = false;
template.close('list');
template.open('list', 'dominos');
$scope.scroolTop();
}
开发者ID:entcore,项目名称:entcore,代码行数:7,代码来源:directory.ts
示例2: function
writeMail: async function (params) {
Conversation.instance.folders.openFolder('inbox');
await Conversation.instance.sync();
template.open('page', 'folders');
template.open('main', 'mail-actions/write-mail');
$scope.constructNewItem();
if (_.isString(params.id)) {
if (!params.type || params.type === 'User') {
let user = new User(params.id);
await user.findData();
$scope.addUser(user);
}
else if (params.type === 'Group') {
let group = new User(params.id);
await group.findGroupData();
$scope.addUser(group);
}
else if (params.type === 'Favorite') {
await $scope.state.newItem.addFavorite(params.id);
}
} else if (params.id !== undefined) {
for (let i = 0; i < params.id.length; i++) {
let user = new User(params.id[i]);
await user.findData();
$scope.addUser(user);
}
}
$scope.$apply();
},
开发者ID:entcore,项目名称:entcore,代码行数:30,代码来源:controller.ts
示例3: function
dashboardTeacherLibrary: function () {
if (_userProfile === teacherProfile) {
template.open('main', 'teacher-dashboard-library-tab');
} else {
template.open('main', '401-exercizer');
}
},
开发者ID:OPEN-ENT-NG,项目名称:exercizer,代码行数:7,代码来源:ExercizerController.ts
注:本文中的entcore.template类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论