Commit d9c80551 authored by dragondean@qq.com's avatar dragondean@qq.com

订单创建和修改的接口超时时间

parent 6ba5bda3
......@@ -5,7 +5,8 @@ export function createOrder(data) {
return request({
url: '/ecw/order/create',
method: 'post',
data: data
data: data,
timeout: 5 * 60000
})
}
......@@ -14,7 +15,8 @@ export function updateOrder(data) {
return request({
url: '/ecw/order/update',
method: 'put',
data: data
data: data,
timeout: 5 * 60000
})
}
......
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