b2bManage.js 402 B

12345678910111213
  1. define([ 'ngResource' ], function() {
  2. angular.module('b2bManageService', [ 'ngResource' ]).factory('manage', ['$resource', function($resource) {
  3. return $resource('b2b', {}, {
  4. /**
  5. * 获取企业列表
  6. */
  7. getEnterpriseList: {
  8. url: 'b2b/manage/enterpriseList',
  9. method:'GET'
  10. }
  11. });
  12. }])
  13. });