Commit 4a7ddea5 by zhuzhequan

podus 修改

parent 9c654b70
...@@ -544,6 +544,24 @@ export function statusPushApi(params: (string | number)[]) { ...@@ -544,6 +544,24 @@ export function statusPushApi(params: (string | number)[]) {
) )
} }
// 转至已完成
export function changeToFinished(ids: string) {
return axios.get<never, BaseRespData<never>>(
`factory/podJomallOrderUs/updateToComplete`,
{ params:{ids} },
)
}
// 转至已完成
export function updateTrackingNumberAndRegister(id: number,trackingNumber:string) {
return axios.post<never, BaseRespData<never>>(
`factory/podJomallOrderUs/updateTrackingNumberAndRegister`,
{id,trackingNumber },
)
}
// 完成发货 // 完成发货
export function completeDeliveryApi(params: { export function completeDeliveryApi(params: {
orderIdList: (string | number)[] orderIdList: (string | number)[]
......
...@@ -181,11 +181,6 @@ const menu: MenuItem[] = [ ...@@ -181,11 +181,6 @@ const menu: MenuItem[] = [
label: '下载生产客户端', label: '下载生产客户端',
}, },
{ {
index: '/system/external-authorisation',
id: 5,
label: '外部授权',
},
{
index: '/system/customers', index: '/system/customers',
id: 6, id: 6,
label: '客户管理', label: '客户管理',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment