Commit 89d5806f 89d5806fcf9e333c63eecb4b4f765f241cf4a151 by zhanghao

commit

1 parent d10e8154
...@@ -569,7 +569,22 @@ ...@@ -569,7 +569,22 @@
569 // } 569 // }
570 } 570 }
571 }, 571 },
572 mounted() {
573 this.openToolPage()
574 },
572 methods: { 575 methods: {
576 openToolPage() {
577 let config = {
578 headers: {
579 'Content-Type': 'application/x-www-form-urlencoded'
580 }
581 }
582 this.$http.get('/tool/openToolPage',config).then((res)=>{
583 console.log(res);
584 }).catch(error=>{
585 console.log(error);
586 })
587 },
573 onCopy (e) { 588 onCopy (e) {
574 this.$message({ 589 this.$message({
575 showClose: true, 590 showClose: true,
......