| 12345678910111213 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const createExpressOrder = data => {
- return https.post('/express/create-way-bill', data)
- }
- export const cancelExpressOrder = data => {
- return https.get('/express/cancel-way-bill', data)
- }
- export const testUpdate = data => {
- return https.get('/express/test-update', data)
- }
|