13 lines
369 B
JavaScript
13 lines
369 B
JavaScript
import oahttp from "@/utils/oahttp.js";
|
|
|
|
|
|
export const lists = (data) => oahttp.get('/logistic/lists', data)
|
|
//详情
|
|
export const detail = (data) => oahttp.get('/logistic/detail', data)
|
|
//提取商品
|
|
export const takeGoods = (data) => oahttp.post('/logistic/takeGoods', data)
|
|
|
|
//完成配送
|
|
export const delivery = (data) => oahttp.post('/logistic/delivery', data)
|
|
|