index.js 351 B

12345678910111213
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. export const createExpressOrder = data => {
  3. return https.post('/express/create-way-bill', data)
  4. }
  5. export const cancelExpressOrder = data => {
  6. return https.get('/express/cancel-way-bill', data)
  7. }
  8. export const testUpdate = data => {
  9. return https.get('/express/test-update', data)
  10. }