makeForm(data) {
// 创建一个 form
const tempForm = document.createElement("form");
tempForm.id = "tempForm";
tempForm.name = "tempForm";
tempForm.target = "_blank";
// 添加到 body 中
document.body.appendChild(tempForm);
// 创建一个用户名输入
const nameinput = document.createElement("input");
// 设置相应参数
nameinput.type = "text";
nameinput.name = data.fromParamName;
nameinput.value = data.fromParamValue;
// 将该输入框插入到 form 中
tempForm.appendChild(nameinput);
// form 的提交方式
tempForm.method = "POST";
// form 提交路径
tempForm.action = data.redirectUrl;
// 对该 form 执行提交
tempForm.submit();
// 删除该 form
document.body.removeChild(tempForm);
}