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

18 lines
546 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',
2016-08-09 17:01:06 +08:00
urlName: 'course_notice',
loadCallback: function(data){
$scope.news = data.data;
2016-08-11 14:09:41 +08:00
$scope.is_public = data.is_public;
},
replyCallback: function(){
}
2016-06-14 14:24:39 +08:00
});
}]);