| | |
| | | }, |
| | | |
| | | mounted() { |
| | | |
| | | const href = this.$route.href; |
| | | if (this.$route?.query?.status !== undefined && this.$route?.query?.status !== null) { |
| | | this.filters.status = this.$route?.query?.status + ''; |
| | |
| | | |
| | | if (orderNumber) { |
| | | this.filters.keyword = orderNumber; |
| | | |
| | | this.$nextTick(() => { |
| | | this.isShowInfo = true; |
| | | const find = this.$store.state.tags.bsTagList.find(i => i.path === '/tickets/ticket') |
| | | find && (find.query = {}) |
| | | }); |
| | | |
| | | console.log('orderNumber', orderNumber); |
| | |
| | | this.page.currentPage = 1; |
| | | this.$router.replace({}); //清除url参数 |
| | | this.fetchTableData(); |
| | | console.log('handleSearch', this.$router); |
| | | |
| | | }, |
| | | handleKeyWords(){ |
| | | this.$router.replace({}); //清除url参数 |
| | |
| | | }, |
| | | activated() { |
| | | this.handleReset(); |
| | | } |
| | | }, |
| | | |
| | | }; |
| | | </script> |
| | | |