This commit is contained in:
2023-06-09 17:59:05 +08:00
parent 59b15f321d
commit 47a057b35b
237 changed files with 669 additions and 216 deletions

View File

@@ -244,6 +244,32 @@ const esignUrl = (data) =>{
})
}
// 年费费-取消订单
const yearCancel = (order_id) =>{
return request({
url: "synthesis/services/order/" + order_id,
method: 'DELETE'
})
}
// 委托单-取消订单
const entrustCancel = (expand_id) =>{
return request({
url: "synthesis/entrust/order/" + expand_id,
method: 'DELETE'
})
}
// 拓展单-取消订单
const expandCancel = (order_id) =>{
return request({
url: "synthesis/expand/order/" + order_id,
method: 'DELETE'
})
}
export {
synthesisCount,
synthList,
@@ -273,5 +299,8 @@ export {
diffPrices,
entrustPay,
cancelPrices,
esignUrl
esignUrl,
yearCancel,
entrustCancel,
expandCancel
}