orderservice.js 450 B

123456789101112131415
  1. (function (app) {
  2. app.factory('orderService', ['$http', 'config', "util", 'data', function ($http, config, util, data) {
  3. return {
  4. //下单
  5. addOrder: function (model) {
  6. return $http({
  7. url: config.server + 'api/orders',
  8. method: "post",
  9. data: model
  10. })
  11. }
  12. };
  13. }]);
  14. })(angular.module('app.services'));