| 1234567891011121314151617181920212223242526272829 | 
							- import Request from '../common/request.js';
 
- let request = new Request().http
 
-  
 
-  export function getStoreOrderItems(data) {
 
-  	 return request('/store/app/storeAfterSales/getStoreOrderItems',data,'GET');
 
-  } 
 
-  export function applyAfterSales(data) {
 
-  	 return request('/store/app/storeAfterSales/applyAfterSales',data,'POST','application/json;charset=UTF-8');
 
-  }
 
-  
 
-  export function getStoreAfterSalesList(data) {
 
-  	 return request('/store/app/storeAfterSales/getStoreAfterSalesList',data,'GET');
 
-  } 
 
-  
 
-  export function getStoreAfterSalesById(data) {
 
-  	 return request('/store/app/storeAfterSales/getStoreAfterSalesById',data,'GET');
 
-  } 
 
-  export function revoke(data) {
 
-  	 return request('/store/app/storeAfterSales/revoke',data,'POST','application/json;charset=UTF-8');
 
-  }
 
-  export function addDelivery(data) {
 
-  	 return request('/store/app/storeAfterSales/addDelivery',data,'POST','application/json;charset=UTF-8');
 
-  }
 
-  
 
-  
 
-  
 
-  
 
-  
 
-  
 
 
  |