2016-06-24 09:01:12 +08:00
|
|
|
|
/**
|
|
|
|
|
* Created by guange on 16/6/22.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.controller('InviteCodeController', ['$scope','$http', '$routeParams','config','auth', function($scope, $http, $routeParams, config, auth){
|
|
|
|
|
var vm = $scope;
|
|
|
|
|
|
|
|
|
|
vm.course = {};
|
|
|
|
|
var courseid = $routeParams.id;
|
|
|
|
|
$http.get(config.apiUrl+ 'courses/'+courseid+"?token="+auth.token()).then(
|
|
|
|
|
function(response){
|
|
|
|
|
console.log(response.data);
|
|
|
|
|
vm.course = response.data.data;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2016-06-24 14:59:50 +08:00
|
|
|
|
vm.share = function(){
|
|
|
|
|
window.WeixinJSBridge.invoke('sendAppMessage',{
|
|
|
|
|
'appid': 'wxf694495398c7d470', // 公众号appID
|
|
|
|
|
'type': 'link', // 非必填,music,vido或link,默认为link。
|
|
|
|
|
'data_url': '', // 非必填,连接地址,如音乐的mp3数据地址,供内置播放器使用
|
|
|
|
|
'img_url': 'http://pnewsapp.tc.qq.com/newsapp_bt/0/9963967/640', // 缩略图地址
|
|
|
|
|
'img_height':370, // 缩略图高度
|
|
|
|
|
'img_width':550, // 缩略图宽度
|
|
|
|
|
'link':'http://view.inews.qq.com/a/WXN2013101101385701', // 链接地址
|
|
|
|
|
'desc':'desc', // 描述
|
|
|
|
|
'title':'title' // 标题
|
|
|
|
|
},function(res){
|
|
|
|
|
//alert(res.err_msg);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-24 09:01:12 +08:00
|
|
|
|
}]);
|