微信模板消息的详情页面
This commit is contained in:
parent
3382355086
commit
b86669d49c
2
1234567
2
1234567
|
@ -1 +1 @@
|
|||
{"access_token":"GrEg56Sg5QRM7IXghWlaDzNd-7iaQsqX2acszXkSTFwOh_OxtN_UNIJsj9rlSZeSkZSofQwd0KvFGv_StzARHeLw81JllcI3a3VuXgZ_cjbQnM3m00g0HiLtTniQFsEIUVIdABAPQD","expires_in":7200,"got_token_at":1461314104}
|
||||
{"access_token":"Tzi0x9dIp8qqn2CQ7kLnqIjyJvGweEImLmBcbCnev8VTHGAbXbNnihigWDkjJXuthZlGBkIpru5tSoGBSYz8EPktPmdL3CaH1SQXRLxK0FJwHg85fhxMnro_5YmrKO_jDPCaAIAHTG","expires_in":7200,"got_token_at":1461566075}
|
|
@ -190,7 +190,13 @@ app.controller('IssueController', function($scope, $http, $routeParams, auth, co
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addIssueReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -221,7 +227,13 @@ app.controller('HomeworkController', function($scope, $http, $routeParams, auth,
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addHomeworkReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -251,7 +263,13 @@ app.controller('CourseNoticeController', function($scope, $http, $routeParams, a
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addNoticeReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -281,7 +299,13 @@ app.controller('DiscussionController', function($scope, $http, $routeParams, aut
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addDiscussionReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -311,7 +335,13 @@ app.controller('JournalsController', function($scope, $http, $routeParams, auth,
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addJournalReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -343,7 +373,13 @@ app.controller('BlogController', function($scope, $http, $routeParams, auth, com
|
|||
});
|
||||
};
|
||||
|
||||
auth.getOpenId().then(
|
||||
function successCallback(response){
|
||||
loadData($routeParams.id);
|
||||
}, function errorCallback(response) {
|
||||
alert("获取openid出错:"+response);
|
||||
}
|
||||
);
|
||||
|
||||
$scope.addBlogReply = function(data){
|
||||
console.log(data.comment);
|
||||
|
@ -436,7 +472,7 @@ app.config(['$routeProvider',"$httpProvider",function ($routeProvider, $httpProv
|
|||
.otherwise({
|
||||
redirectTo: '/activities'
|
||||
});
|
||||
$httpProvider.interceptors.push('timestampMarker');
|
||||
//$httpProvider.interceptors.push('timestampMarker');
|
||||
}]);
|
||||
|
||||
//loading
|
||||
|
|
Loading…
Reference in New Issue