function set(a,b){var c=(new Date).getTime();return localStorage.setItem(a,JSON.stringify({data:b,time:c}))}function get(a,b){var d,c=localStorage.getItem(a);""!=c&&null!=c?(d=JSON.parse(c),console.log(d.data),(new Date).getTime()-d.time>b?console.log("token已过期"):console.log("token没过期")):wxLogin()}var getSec=function(a){var b=a.substr(0,a.length-1),c=a.substr(a.length-1,1);return"s"==c?1e3*b:"m"==c?1e3*60*b:"h"==c?1e3*60*60*b:"d"==c?1e3*60*60*24*b:void 0};