This commit is contained in:
2025-11-05 22:47:11 +08:00
parent df9085baa4
commit 364276d85b
2 changed files with 61 additions and 78 deletions

View File

@@ -35,6 +35,23 @@ export function fillLogisticsByOrderNo(data) {
})
}
// 获取token状态
export function getTokenStatus() {
return request({
url: '/jarvis/tendoc/tokenStatus',
method: 'get'
})
}
// 设置token用于首次授权
export function setToken(data) {
return request({
url: '/jarvis/tendoc/setToken',
method: 'post',
data
})
}
// 追加单个订单物流信息
export function appendLogistics(data) {
return request({