@@ -184,7 +184,7 @@ html {
top: 0;
opacity: 0.8;
bottom: 50px;
- z-index: 2;
+ z-index: 1500;
transition: all 0.2s ease-in;
display: flex;
flex-direction: column;
@@ -27,7 +27,15 @@ function handleQuit(action = "quit") {
case 'quit':
return exit();
case 'dormant':
- return downline();
+ $.confirm({
+ title: '提示',
+ text: '确定退出云手机并下机',
+ onOK: function () {
+ //点击确认
+ downline();
+ },
+ });
+ // return
}