Commit 64c3d573 authored by liujiangnan's avatar liujiangnan

debug

parent b1e6e546
...@@ -198,6 +198,16 @@ export function timerManager () { ...@@ -198,6 +198,16 @@ export function timerManager () {
type: null, type: null,
}; };
} }
window.freeAllTimeInterval = function(){
console.log("===liu===des==freeAll");
for (const key in window.timerManager) {
const obj = window.timerManager[key];
console.log("===liu===des==",obj.handler, obj.type);
if(obj.handler){
window[obj.type](obj.handler);
}
}
}
return { return {
freeAll() { freeAll() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment