home.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  12. <script src="system/js/jquery-1.7.2.min.js"></script>
  13. <script src="js/js.js"></script>
  14. <style>
  15. body {
  16. margin: 0;
  17. padding: 0;
  18. overflow: hidden;
  19. }
  20. .container {
  21. display: flex;
  22. height: 100vh;
  23. width: 100vw;
  24. overflow: hidden;
  25. }
  26. .panel-container {
  27. width: 250px;
  28. height: 100%;
  29. overflow-y: auto;
  30. /* 隐藏滚动条但保持功能 */
  31. scrollbar-width: none; /* Firefox */
  32. -ms-overflow-style: none; /* IE and Edge */
  33. }
  34. .panel-container::-webkit-scrollbar {
  35. display: none; /* Chrome, Safari and Opera */
  36. }
  37. .content-container {
  38. flex: 1;
  39. height: 100%;
  40. width: 100%;
  41. }
  42. #contentFrame {
  43. width: 100%;
  44. height: 100%;
  45. border: none;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div class="container" style="">
  51. <div class="panel-container">
  52. <?php
  53. // 只有首页 panel.php
  54. require_once 'panel.php';
  55. ?>
  56. </div>
  57. <div class="content-container">
  58. <iframe id="contentFrame" name="contentFrame" src="dashboard_search.php"></iframe>
  59. </div>
  60. </div>
  61. <?php
  62. $sql = "SELECT cs_code, em_user, cs_claimdate FROM customer
  63. LEFT JOIN employee ON customer.cs_belong = employee.id
  64. WHERE customer.id IN (
  65. SELECT cs_id FROM claimrecord
  66. WHERE isread = 0 AND originalEmp = ?
  67. )";
  68. $stmt = $conn->prepare($sql);
  69. $stmt->bind_param("s", $_SESSION['employee_name']);
  70. $stmt->execute();
  71. $result = $stmt->get_result();
  72. if ($result->num_rows > 0) {
  73. ?>
  74. <div class="modal" id="modal">
  75. <div class="modal-wraper">
  76. <div class="modal-content">
  77. <div class="popup-title">距离上次登录之后,以下客户已经被认领</div>
  78. <div class="popup-content">
  79. <ul>
  80. <?php while ($row = $result->fetch_assoc()) { ?>
  81. <li>
  82. <span class="prominent"><?= textUncode($row['cs_code']) ?></span> 被
  83. <span class="prominent"><?= textUncode($row['em_user']) ?></span> 于
  84. <span><?= textUncode($row['cs_claimdate']) ?></span> 认领
  85. </li>
  86. <?php } ?>
  87. </ul>
  88. </div>
  89. <div class="close" onclick="closePopup()">已读</div>
  90. </div>
  91. </div>
  92. </div>
  93. <?php
  94. }
  95. // Update claim records
  96. $update_sql = "UPDATE claimrecord SET isread = 1
  97. WHERE originalEmp = ? AND isread = 0";
  98. $update_stmt = $conn->prepare($update_sql);
  99. $update_stmt->bind_param("s", $_SESSION['employee_name']);
  100. $update_stmt->execute();
  101. $stmt->close();
  102. $update_stmt->close();
  103. ?>
  104. <script>
  105. // 检查是否首次登陆或是否过期
  106. const em = localStorage.getItem('em');
  107. const currentTime = new Date().getTime();
  108. const expirationTime = 24 * 60 * 60 * 1000; // 24小时的有效时间
  109. console.log(em);
  110. if (!em || em !== 'em<?= $_SESSION["employee_id"] ?>') {
  111. // 如果是首次登陆或已过期,显示弹窗
  112. $("#modal").addClass("active");
  113. setTimeout(function() {
  114. $("#modal").find(".modal-content").addClass("active");
  115. }, 0);
  116. // 存储当前时间戳
  117. localStorage.setItem('em', 'em<?= $_SESSION["employee_id"] ?>');
  118. }
  119. // 关闭弹窗的函数
  120. function closePopup() {
  121. $("#modal").removeClass("active");
  122. }
  123. // Prevent iframe content from being loaded in parent window when logged out
  124. if (window.top !== window.self) {
  125. window.top.location.href = window.location.href;
  126. }
  127. </script>
  128. </body>
  129. </html>