attendtion.js 505 B

123456789101112131415161718
  1. define([ 'ngResource' ], function() {
  2. angular.module('AttendtionServices', ['ngResource']).factory('Attendtion', ['$resource', function ($resource) {
  3. return $resource('produce/kindConcern', {}, {
  4. getList: {
  5. url: 'produce/kindConcern/list',
  6. method: 'GET'
  7. },
  8. add: {
  9. url: 'produce/kindConcern/batch/add',
  10. method: 'POST'
  11. },
  12. del: {
  13. url: 'produce/kindConcern/batch/delete',
  14. method: 'POST'
  15. }
  16. });
  17. }]);
  18. });