|  | @@ -1,7 +1,7 @@
 | 
	
		
			
				|  |  |  <template>
 | 
	
		
			
				|  |  |    <div class="container">
 | 
	
		
			
				|  |  |      <el-tag
 | 
	
		
			
				|  |  | -      v-show="!((item.key == 'WAIT_CREATE_PAYMENT_CALENDER' || $route.path == '/business/teamDetail') && !show)"
 | 
	
		
			
				|  |  | +      v-show="!((item.key == 'WAIT_CREATE_PAYMENT_CALENDER' || $route.path == '/business/teamDetail') && !show && $route.query.form != 'reminders')"
 | 
	
		
			
				|  |  |        class="filter-search"
 | 
	
		
			
				|  |  |        v-for="item in activeItems"
 | 
	
		
			
				|  |  |        :key="item.key"
 | 
	
	
		
			
				|  | @@ -60,6 +60,11 @@ export default {
 | 
	
		
			
				|  |  |        default: () => []
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  | +  data() {
 | 
	
		
			
				|  |  | +    return{
 | 
	
		
			
				|  |  | +      initSearch: {}
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +  },
 | 
	
		
			
				|  |  |    computed: {
 | 
	
		
			
				|  |  |      hasSearch() {
 | 
	
		
			
				|  |  |        return this.$route.query[this.searchKey]
 | 
	
	
		
			
				|  | @@ -79,6 +84,7 @@ export default {
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    mounted() {
 | 
	
		
			
				|  |  | +    this.initSearch = this.$route.query
 | 
	
		
			
				|  |  |      console.log(this.activeItems)
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    watch: {
 | 
	
	
		
			
				|  | @@ -101,9 +107,10 @@ export default {
 | 
	
		
			
				|  |  |          this.$router.replace({
 | 
	
		
			
				|  |  |            path: item.url,
 | 
	
		
			
				|  |  |            query: {
 | 
	
		
			
				|  |  | +            ...this.$route.query,
 | 
	
		
			
				|  |  |              ...item.query,
 | 
	
		
			
				|  |  |              filter_type: item.key,
 | 
	
		
			
				|  |  | -            [item.resultKey]: item.resultKey ? (item.result || []).join(',') : undefined
 | 
	
		
			
				|  |  | +            [this.searchKey]: this.initSearch[this.searchKey]
 | 
	
		
			
				|  |  |            }
 | 
	
		
			
				|  |  |          })
 | 
	
		
			
				|  |  |          this.$emit('setTimeForSearch')
 |