项目中普通api接口请求:

/**
 * 放款管理-放款中订单管理-单条刷新
 * @param{*} id
 * method post
 */
export function postRefresh(data) {
  return request({
    url: '/api/operation/payoutOrder/refresh',
    method: 'post',
    data
  })
}

重设超时时间的接口请求:

/**
 * 放款管理-放款中订单管理-单条刷新
 * @param{*} id
 * method post
 */
export function postRefresh(data) {
  return request({
    url: '/api/operation/payoutOrder/refresh',
    method: 'post',
    timeout: 100 * 1000,
    data
  })
}

直接添加timeout, 另外还能直接添加请求头属性,使用:
headers: {'属性名': 属性值}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐