| 
					
				 | 
			
			
				@@ -1,40 +0,0 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-export default function Persistent({key, modules, modulesKeys}) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    return (theStore) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        if (localStorage) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            const localOldState = JSON.parse(localStorage[key] || '{}'); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            const sessionOldState = JSON.parse(sessionStorage[key] || '{}'); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            let oldState = {}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            Object.assign(oldState, localOldState, sessionOldState); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            if (Object.keys(oldState).length > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                for (const oldKey in oldState) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    modules[oldKey] = oldState[oldKey] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                theStore.replaceState(modules) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            theStore.subscribe((mutation, state) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                // 判断是否需要缓存数据至localStorage 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                if (modulesKeys.local.length > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    const localData = setData(theStore.state, modulesKeys.local) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    localStorage.setItem(key, JSON.stringify(localData)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    localStorage.removeItem(key) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                // 判断是否需要缓存数据至sessionStorage 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                if (modulesKeys.session.length > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    const sessionData = setData(theStore.state, modulesKeys.session) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    sessionStorage.setItem(key, JSON.stringify(sessionData)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    sessionStorage.removeItem(key) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				- 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-function setData(state, module) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    let data = {} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    for (const i of module) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        data[i] = state[i] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    return data 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-} 
			 |