You need to sign in or sign up before continuing.
Commit 89d5806f 89d5806fcf9e333c63eecb4b4f765f241cf4a151 by zhanghao

commit

1 parent d10e8154
......@@ -569,7 +569,22 @@
// }
}
},
mounted() {
this.openToolPage()
},
methods: {
openToolPage() {
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
this.$http.get('/tool/openToolPage',config).then((res)=>{
console.log(res);
}).catch(error=>{
console.log(error);
})
},
onCopy (e) {
this.$message({
showClose: true,
......