| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import Request from '@/common/request.js';
- let request = new Request().http
-
- export function getMyStoreOrderItemByOrderId(data) {
- return request('/store/app/storeAfterSales/getMyStoreOrderItemByOrderId',data,'GET');
- }
- export function applyAfterSales(data) {
- return request('/store/app/storeAfterSales/applyAfterSales',data,'POST','application/json;charset=UTF-8');
- }
-
- export function getAfterSalesList(data) {
- return request('/store/app/storeAfterSales/getStoreAfterSalesList',data,'GET');
- }
-
- export function getAfterSalesDetails(data) {
- return request('/store/app/storeAfterSales/getAfterSalesDetails',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');
- }
- export function queryLogisticsCompany(data) {
- return request('/store/app/logistics/query',data,'GET');
- }
- export function refreshLogisticsCompany(data) {
- return request('/store/app/logistics/refresh',data,'GET');
- }
- export function editDelivery(data) {
- return request('/store/app/storeAfterSales/editDelivery',data,'POST','application/json;charset=UTF-8');
- }
- export function getErpReturnInfo(data) {
- return request('/store/app/storeOrder/getErpReturnInfo',data,'POST','application/json;charset=UTF-8');
- }
-
-
-
|