|  | @@ -10,16 +10,26 @@ export async function showFullScreenLoading(store) {
 | 
											
												
													
														|  |      await store.dispatch('app/setLoadStatus', true)
 |  |      await store.dispatch('app/setLoadStatus', true)
 | 
											
												
													
														|  |      load.startLoading()
 |  |      load.startLoading()
 | 
											
												
													
														|  |    } else {
 |  |    } else {
 | 
											
												
													
														|  | -    await store.dispatch('app/setLoadCount', 1)
 |  | 
 | 
											
												
													
														|  | -    clearTimeout(timer)
 |  | 
 | 
											
												
													
														|  | -    timer = null
 |  | 
 | 
											
												
													
														|  | 
 |  | +    if(store.getters.loadCount < 0){
 | 
											
												
													
														|  | 
 |  | +      await store.dispatch('app/resetLoadCount')
 | 
											
												
													
														|  | 
 |  | +      await store.dispatch('app/setLoadCount', 1)
 | 
											
												
													
														|  | 
 |  | +      clearTimeout(timer)
 | 
											
												
													
														|  | 
 |  | +      timer = null
 | 
											
												
													
														|  | 
 |  | +    }else{
 | 
											
												
													
														|  | 
 |  | +      await store.dispatch('app/setLoadCount', 1)
 | 
											
												
													
														|  | 
 |  | +      clearTimeout(timer)
 | 
											
												
													
														|  | 
 |  | +      timer = null
 | 
											
												
													
														|  | 
 |  | +    }
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |    }
 |  |    }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  export async function tryHideFullScreenLoading(store) {
 |  |  export async function tryHideFullScreenLoading(store) {
 | 
											
												
													
														|  | 
 |  | +  console.log(store.getters.loadCount)
 | 
											
												
													
														|  |    await store.dispatch('app/setLoadCount', -1)
 |  |    await store.dispatch('app/setLoadCount', -1)
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |    if (store.getters.loadCount <= 0 && store.getters.isLoading) {
 |  |    if (store.getters.loadCount <= 0 && store.getters.isLoading) {
 | 
											
												
													
														|  |      if(timer)return
 |  |      if(timer)return
 | 
											
												
													
														|  |      timer = setTimeout(async () => {
 |  |      timer = setTimeout(async () => {
 |