提交 8dc38a0c 编写于 作者: Neuromancer255's avatar Neuromancer255

补充再按一次退出的逻辑 --fix1

上级 f1f92aa7
......@@ -229,6 +229,7 @@ ${P.getLogicCode(logic, "LOGIC.vue").code}
let firstQuitTime: any = localStorage.getItem("firstQuit");
// 如果时间差小于两秒 直接关闭
if (new Date().getTime() - firstQuitTime < 2000) {
window.localStorage.removeItem("firstQuit");
this.$viewTool.ThirdPartyClose();
}
}
......@@ -247,7 +248,7 @@ ${P.getLogicCode(logic, "LOGIC.vue").code}
<#if view.getViewType?? && view.getViewType()?? && view.getViewType()=="APPINDEXVIEW">
this.quitFun();
return;
</#if>
<#else>
if(this.viewDefaultUsage==="indexView" && this.$route.path === '/<#if view.getDefaultPSAppIndexView?? && view.getDefaultPSAppIndexView()??>${view.getDefaultPSAppIndexView()?lower_case}<#else>appindexview</#if>'){
this.quitFun();
return;
......@@ -259,6 +260,7 @@ ${P.getLogicCode(logic, "LOGIC.vue").code}
this.$emit("close", { status: "success", action: "close", data: args instanceof MouseEvent ? null : args });
}
</#if>
</#if>
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册