commit
Showing
1 changed file
with
15 additions
and
0 deletions
| ... | @@ -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, | ... | ... |
-
Please register or sign in to post a comment