subTagClound.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: 20px;
  18. background: #fff;
  19. }
  20. #man_zone {
  21. margin-left: 0;
  22. }
  23. </style>
  24. </head>
  25. <body class="clear">
  26. <?php // require_once 'panel.php'; ?>
  27. <div id="man_zone">
  28. <?php
  29. // 获取所有em_role等于当前用户employee_id的员工
  30. $employeeResult = $conn->query("SELECT id, em_user FROM employee WHERE em_role=" . $_SESSION['employee_id']);
  31. if ($employeeResult) {
  32. while ($employeeRow = $employeeResult->fetch_assoc()) {
  33. ?>
  34. <div class="tagclound">
  35. <h1 class="tagCloundHead2"><?= htmlspecialcharsFix($employeeRow['em_user']) ?>的客户画像:</h1>
  36. <div class="tagArea">
  37. <?php
  38. // 对每个员工,查询其添加的所有标签
  39. $tagResult = $conn->query("SELECT tagName, COUNT(id) as count FROM tagtable WHERE employeeId=" . $employeeRow['id'] . " GROUP BY tagName");
  40. if ($tagResult) {
  41. while ($tagRow = $tagResult->fetch_assoc()) {
  42. echo '<a href="subTag.php?employeeId=' . $employeeRow['id'] . '&tagName=' . urlencode($tagRow['tagName']) . '">' .
  43. htmlspecialcharsFix($tagRow['tagName']) . '(' . $tagRow['count'] . ')</a>';
  44. }
  45. }
  46. ?>
  47. </div>
  48. </div>
  49. <?php
  50. }
  51. }
  52. ?>
  53. </div>
  54. </body>
  55. </html>