1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- (function (app) {
- app.factory('homeService', ['$http', 'config', "util", function ($http, config, util) {
- return {
- sent_list: function (filter) {
- return $http({
- url: config.server + 'api/service/sent_list?q=' + filter.q + "&status=" + filter.status+ "&page=" + filter.page+"&f="+filter.f,
- method: "get"
- })
- },
- supportDream:function(data){
- return $http({
- url:config.server + "api/dream/support",
- method:"post",
- data:data
- })
- },
- collectionDream:function(id){
- return $http({
- url:config.server + "api/dream/collection?id=" + id,
- method:"get",
- })
- },
- searchContent:function (data){
- return $http({
- url: config.server + 'api/index/search?' + data,
- method:"get"
- })
- },
- dreamDetail: function (id) {
- return $http({
- url: config.server + 'api/dream/show?id=' + id,
- method: "get"
- })
- },
- index: function (type, page) {
- var url = util.format('{0}/api/index/index?type={1}&page={2}', config.server,type,page);
- return $http({
- url: url,
- method: "get"
- })
- },
- news_info: function (id) {
- return $http({
- url: config.server + 'api/index/news_info?id='+id,
- method: "get"
- })
- },
- user_search: function (keyword) {
- return $http({
- url: config.server + 'api/index/user_search?keyword='+keywords,
- method: "get"
- })
- },
- news_info: function (id) {
- return $http({
- url: config.server + 'api/index/news_info?id=' + id,
- method: "get"
- })
- },
- };
- }]);
- })(angular.module('app.services'));
|