美文网首页vue2.0
vue 下载和导出excel表格(get)

vue 下载和导出excel表格(get)

作者: zlf_j | 来源:发表于2019-05-09 12:50 被阅读1次
  • window.location.href —— 动态输出跳转
        let arr = []
        this.multipleSelection.forEach((item, index) => {
            arr.push(item.userId)
        })
        let b = arr.join(',')
       window.location.href=axios.defaults.baseURL+"/sys/exportTownUserAccountingFraudInfo?ids="+b
  • axios.defaults.baseURL —— axios默认请求的地址前缀

main.js 中设置
axios.defaults.baseURL = 'http://172.16.1.69:8090'

相关文章

网友评论

    本文标题:vue 下载和导出excel表格(get)

    本文链接:https://www.haomeiwen.com/subject/uohwoqtx.html