storeAfterSales.js 891 B

1234567891011121314151617181920212223242526272829
  1. import Request from '../common/request.js';
  2. let request = new Request().http
  3. export function getStoreOrderItems(data) {
  4. return request('/app/storeAfterSales/getStoreOrderItems',data,'GET');
  5. }
  6. export function applyAfterSales(data) {
  7. return request('/app/storeAfterSales/applyAfterSales',data,'POST','application/json;charset=UTF-8');
  8. }
  9. export function getStoreAfterSalesList(data) {
  10. return request('/app/storeAfterSales/getStoreAfterSalesList',data,'GET');
  11. }
  12. export function getStoreAfterSalesById(data) {
  13. return request('/app/storeAfterSales/getStoreAfterSalesById',data,'GET');
  14. }
  15. export function revoke(data) {
  16. return request('/app/storeAfterSales/revoke',data,'POST','application/json;charset=UTF-8');
  17. }
  18. export function addDelivery(data) {
  19. return request('/app/storeAfterSales/addDelivery',data,'POST','application/json;charset=UTF-8');
  20. }