工单报备按钮加防重复点击2

This commit is contained in:
2023-08-23 11:33:27 +08:00
parent 0b7b917143
commit 5418074081
2 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,11 @@
<script>
export default {
name: 'App',
mounted() {
const urlParams = new URLSearchParams(window.location.search);
const token = urlParams.get('token');
this.$toast("打印token",token)
}
}
</script>