
downInfoTemplate(batchId) {
let tempForm = document.createElement('form')
tempForm.action = 'xxx'
tempForm.target = '_blank'
tempForm.method = 'post'
tempForm.style.display = 'none'
let opt = document.createElement('textarea')
opt.name = 'batchId'
opt.value = batchId
tempForm.appendChild(opt)
document.body.appendChild(tempForm)
tempForm.submit()
}