| 12345678910111213 |
- define([ 'ngResource' ], function() {
- angular.module('b2bManageService', [ 'ngResource' ]).factory('manage', ['$resource', function($resource) {
- return $resource('b2b', {}, {
- /**
- * 获取企业列表
- */
- getEnterpriseList: {
- url: 'b2b/manage/enterpriseList',
- method:'GET'
- }
- });
- }])
- });
|