copy(val) {
let oInput = document.createElement("input");
oInput.value = val;
document.body.appendChild(oInput);
oInput.select();
document.execCommand("Copy");
this.$message({
message: "复制成功",
type: "success",
});
oInput.remove();
},