|  | @@ -207,6 +207,7 @@ export default {
 | 
	
		
			
				|  |  |          pageSizes: [10, 50, 100, 200, 300]
 | 
	
		
			
				|  |  |        },
 | 
	
		
			
				|  |  |        key: 0,
 | 
	
		
			
				|  |  | +      screen:{},
 | 
	
		
			
				|  |  |        totalData: {},
 | 
	
		
			
				|  |  |        option: {},
 | 
	
		
			
				|  |  |        optionList: {
 | 
	
	
		
			
				|  | @@ -422,7 +423,10 @@ export default {
 | 
	
		
			
				|  |  |        let this_ = this
 | 
	
		
			
				|  |  |        this_.entrustTimer = setInterval(function () {
 | 
	
		
			
				|  |  |          if (JSON.parse(localStorage.getItem("saber-token")).content) {
 | 
	
		
			
				|  |  | -          totalList(1).then(res => {
 | 
	
		
			
				|  |  | +          totalList({
 | 
	
		
			
				|  |  | +            kind:1,
 | 
	
		
			
				|  |  | +            ...this_.screen
 | 
	
		
			
				|  |  | +          }).then(res => {
 | 
	
		
			
				|  |  |              this_.totalData = res.data.data
 | 
	
		
			
				|  |  |            })
 | 
	
		
			
				|  |  |          }
 | 
	
	
		
			
				|  | @@ -479,9 +483,6 @@ export default {
 | 
	
		
			
				|  |  |        this.onLoad(this.page)
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      onLoad(page, params = {}) {
 | 
	
		
			
				|  |  | -      totalList(1).then(res => {
 | 
	
		
			
				|  |  | -        this.totalData = res.data.data
 | 
	
		
			
				|  |  | -      })
 | 
	
		
			
				|  |  |        let queryParams = {
 | 
	
		
			
				|  |  |          size: page.pageSize,
 | 
	
		
			
				|  |  |          current: page.currentPage,
 | 
	
	
		
			
				|  | @@ -495,6 +496,13 @@ export default {
 | 
	
		
			
				|  |  |          queryParams.endArrivalTime = queryParams.arrivalTime[1]
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |        delete queryParams.arrivalTime
 | 
	
		
			
				|  |  | +      this.screen = queryParams
 | 
	
		
			
				|  |  | +      totalList({
 | 
	
		
			
				|  |  | +        kind:1,
 | 
	
		
			
				|  |  | +        ...this.screen
 | 
	
		
			
				|  |  | +      }).then(res => {
 | 
	
		
			
				|  |  | +        this.totalData = res.data.data
 | 
	
		
			
				|  |  | +      })
 | 
	
		
			
				|  |  |        this.loading = true;
 | 
	
		
			
				|  |  |        selectInvoiceList(queryParams).then(res => {
 | 
	
		
			
				|  |  |          this.dataList = res.data.data.records
 |