socialforge/public/javascripts/wechat/controllers/course_notice.js

16 lines
457 B
JavaScript
Raw Normal View History

app.controller('CourseNoticeController', ['$scope', '$http', '$routeParams', 'auth', 'common',
function($scope, $http, $routeParams, auth, common){
2016-06-14 14:24:39 +08:00
common.init({
id: $routeParams.id,
scope: $scope,
type: 'newss',
replyType: 'News',
loadCallback: function(data){
$scope.news = data.data;
},
replyCallback: function(){
}
2016-06-14 14:24:39 +08:00
});
}]);