- 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'
网友评论