panel.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. // Get employee information
  3. $stmt = $conn->prepare("SELECT * FROM employee WHERE id = ?");
  4. $stmt->bind_param("i", $_SESSION['employee_id']);
  5. $stmt->execute();
  6. $result = $stmt->get_result();
  7. if ($row = $result->fetch_assoc()) {
  8. $em_user = textUncode($row['em_user']);
  9. $em_role = $row['em_role'];
  10. $em_code = textUncode($row['em_code']);
  11. $em_email = textUncode($row['em_email']);
  12. $em_tel = textUncode($row['em_tel']);
  13. } else {
  14. $stmt->close();
  15. $conn->close();
  16. header("Location: /");
  17. exit;
  18. }
  19. $stmt->close();
  20. ?>
  21. <div class="panel">
  22. <section>
  23. <h3><?= $em_user ?></h3>
  24. <div class="role_text"><?= ($em_role == 0) ? "组长" : "组员" ?></div>
  25. <ul class="lxfs">
  26. <li class="tel"><?= $em_tel ?></li>
  27. <li class="mail"><?= $em_email ?></li>
  28. </ul>
  29. </section>
  30. <div>
  31. <dl>
  32. <?php if (strpos($em_code, "BX") === false): ?>
  33. <dt><a href="../home.php" target="contentFrame">客户查找</a></dt>
  34. <?php endif; ?>
  35. <dt><a href="../customerAdd.php" target="contentFrame">客户录入</a></dt>
  36. <dt><a href="../order.php" target="contentFrame">订单管理</a></dt>
  37. <dt id="myCustomer" class="subnav">我的客户
  38. <div class="list-wraper">
  39. <a href="../customers.php" target="contentFrame">全部客户 (<?= $_SESSION['t'] ?>)</a>
  40. <a href="../customers.php?fliterBusiness=1" target="contentFrame">经销商 (<?= $_SESSION['t1'] ?>)</a>
  41. <a href="../customers.php?fliterBusiness=2" target="contentFrame">零售 (<?= $_SESSION['t2'] ?>)</a>
  42. <a href="../customers.php?fliterBusiness=3" target="contentFrame">连锁店铺 (<?= $_SESSION['t3'] ?>)</a>
  43. <a href="../customers.php?fliterBusiness=4" target="contentFrame">中间商 (<?= $_SESSION['t4'] ?>)</a>
  44. <a href="../customers.php?fliterDeal=2" target="contentFrame">明确需求 (<?= $_SESSION['d2'] ?>)</a>
  45. <a href="../customers.php?fliterDeal=3" target="contentFrame">已经成交 (<?= $_SESSION['d1'] ?>)</a>
  46. <a href="../customersNew.php" target="contentFrame">本月新增</a>
  47. <?php if (strpos($em_code, "BX") === false): ?>
  48. <a href="../customersFollow.php" target="contentFrame">即将加入公海 </a>
  49. <a href="../teamSeas.php" target="contentFrame">小组公海(60天无更新)</a>
  50. <a href="../highSeas.php" target="contentFrame">公司公海(120天无更新)</a>
  51. <a href="../claimRecord.php" target="contentFrame">认领记录</a>
  52. <a href="../abnormal.php" target="contentFrame" class="new">异常客户</a>
  53. <?php endif; ?>
  54. </div>
  55. </dt>
  56. <dt class="subnav">数据
  57. <div class="list-wraper">
  58. <a href="../dashboard.php" target="contentFrame">数据看板</a>
  59. <?php if (strpos($em_code, "BX") === false): ?>
  60. <a href="../team.php" target="contentFrame">本月小组数据</a>
  61. <?php endif; ?>
  62. </div>
  63. </dt>
  64. <dt class="subnav">统计分析
  65. <div class="list-wraper">
  66. <a href="statistics.php" target="contentFrame">汇总统计</a>
  67. <a href="customers_stats.php" target="contentFrame">客户统计分析</a>
  68. <a href="products_stats.php" target="contentFrame">产品统计分析</a>
  69. <a href="region_stats.php" target="contentFrame">地区统计分析</a>
  70. <a href="sales_stats.php" target="contentFrame">销售统计分析</a>
  71. </div>
  72. </dt>
  73. <dt><a href="../tagClound.php" target="contentFrame">标签云</a></dt>
  74. <?php if (strpos($em_code, "BX") === false): ?>
  75. <dt><a href="../silentCustomer.php" target="contentFrame">静默客户</a></dt>
  76. <?php endif; ?>
  77. <?php if ($em_role == 0): ?>
  78. <dt class="subnav">我的团队
  79. <div class="list-wraper">
  80. <a href="../subcustomers.php" target="contentFrame">组员客户</a>
  81. <a href="../subtagClound.php" target="contentFrame">组员客户分析</a>
  82. </div>
  83. </dt>
  84. <?php endif; ?>
  85. <dt><a href="../pwdEdit.php" target="contentFrame">修改密码</a></dt>
  86. <dt><a href="../index.php?act=logout" onclick="return confirm('确认要退出吗?');">退出登录</a></dt>
  87. </dl>
  88. </div>
  89. <div class="copyright">
  90. <p>Version 1.5</p>
  91. </div>
  92. <?php if (strpos($em_code, "BX") === false): ?>
  93. <div class="statement">***注意事项***<br>所有业务务必全面录入客户资料,如发现有客户重复第一时间与前录入人沟通并妥善将与客户沟通的内容交接到原录入人,如故意隐瞒或者选择无视不交接,自愿接受退还客户及停止一个月官网询盘客户推送的惩罚,情节严重者按照违反公司利益进行辞退!</div>
  94. <?php endif; ?>
  95. </div>