修改投保内容

This commit is contained in:
pangxingyue
2021-03-08 18:09:50 +08:00
parent 06e560e929
commit 0dc981c23b
13 changed files with 519 additions and 305 deletions

View File

@@ -17,3 +17,20 @@ export function orderList(data) {
})
}
// 获取订单详情
export function getOrderDetail(data) {
return request({
url: getUrl('/sale/order/orderDetail', 1),
method: 'post',
data
})
}
// 保费计算
export function saveOrUpdateOrderInfo(data) {
return request({
url: getUrl('/sale/order/saveOrUpdateOrderInfo', 1),
method: 'post',
data
})
}