Newer
Older
smartwell_app_front / src / api / app.js
StephanieGitHub on 6 Aug 2019 403 bytes first commit
/**
 * APP的接口
 */
import request from '@/utils/request'
// 新版本查询
export function checkVersion() {
  return request({
    url: 'app/checkVersion',
    method: 'post',
  })
}

// 批量导出
export function downloadApk(url) {
  return request({
    url: 'static/'+url,
    method: 'get',
    responseType: 'blob' // 这一步也很关键,一定要加上 responseType 值为 blob
  })
}