panel.php 5.2 KB

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