本文整理汇总了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();
}
示例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();
},
示例3: function
dashboardTeacherLibrary: function () {
if (_userProfile === teacherProfile) {
template.open('main', 'teacher-dashboard-library-tab');
} else {
template.open('main', '401-exercizer');
}
},