panel.asp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. 
  2. <div class="panel">
  3. <% Set Rsp=Server.CreateObject("ADODB.Recordset")
  4. Rsp.Open "Select * from employee where id="&Session("employee_id"),conn,1,1
  5. If Not Rsp.bof and Not Rsp.eof Then
  6. em_user=TextUnCode(Rsp("em_user"))
  7. em_role=Rsp("em_role")
  8. em_code=TextUnCode(Rsp("em_code"))
  9. em_email=TextUnCode(Rsp("em_email"))
  10. em_tel=TextUnCode(Rsp("em_tel"))
  11. Else
  12. Rsp.close
  13. Set Rsp=Nothing
  14. conn.close
  15. set conn=nothing
  16. Response.redirect "/"
  17. Response.end
  18. End If
  19. Rsp.close
  20. Set Rsp=Nothing
  21. %>
  22. <section>
  23. <h3><%=em_user%></h3>
  24. <div class="role_text"><%If em_role=0 then response.write "组长" Else Response.write "组员"%></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. <%if instr(em_code,"BX")=0 Then%>
  33. <dt><a href="../home.php">客户查找</a> </dt>
  34. <%End if%>
  35. <dt><a href="../customerAdd.asp">客户录入</a> </dt>
  36. <dt id="myCustomer" class="subnav">我的客户
  37. <div class="list-wraper">
  38. <a href="../customers.asp">全部客户 (<%=Session("t")%>)</a>
  39. <a href="../customers.asp?fliterBusiness=1">经销商 (<%=Session("t1")%>)</a>
  40. <a href="../customers.asp?fliterBusiness=2">零售 (<%=Session("t2")%>)</a>
  41. <a href="../customers.asp?fliterBusiness=3">连锁店铺 (<%=Session("t3")%>)</a>
  42. <a href="../customers.asp?fliterBusiness=4">中间商 (<%=Session("t4")%>)</a>
  43. <a href="../customers.asp?fliterDeal=2">明确需求 (<%=Session("d2")%>)</a>
  44. <a href="../customers.asp?fliterDeal=3">已经成交 (<%=Session("d1")%>)</a>
  45. <a href="../customersNew.asp">本月新增</a>
  46. <%if instr(em_code,"BX")=0 Then%>
  47. <a href="../customersFollow.asp">即将加入公海 </a>
  48. <a href="../teamSeas.asp">小组公海(60天无更新)</a>
  49. <a href="../highSeas.asp">公司公海(120天无更新)</a>
  50. <a href="../claimRecord.asp" >认领记录</a>
  51. <a href="../abnormal.asp" class="new">异常客户</a>
  52. <%End if%>
  53. </div>
  54. </dt>
  55. <dt class="subnav"> 数据
  56. <div class="list-wraper">
  57. <a href="../dashboard.asp">数据看板</a>
  58. <%if instr(em_code,"BX")=0 Then%>
  59. <a href="../team.asp">本月小组数据</a>
  60. <%End if%>
  61. </div>
  62. </dt>
  63. <dt><a href="../tagClound.asp">标签云</a></dt>
  64. <%if instr(em_code,"BX")=0 Then%>
  65. <dt><a href="../silentCustomer.asp" >静默客户</a> </dt>
  66. <%End if%>
  67. <%If em_role=0 Then%>
  68. <dt class="subnav">我的团队
  69. <div class="list-wraper">
  70. <a href="../subcustomers.asp">组员客户</a>
  71. <a href="../subtagClound.asp">组员客户分析</a>
  72. </div>
  73. </dt>
  74. <%End If%>
  75. <dt><a href="../pwdEdit.asp" >修改密码</a> </dt>
  76. <dt><a href="../index.php?act=logout" onclick="if(!confirm('确认要退出吗?'))return false;">退出登录</a> </dt>
  77. </dl>
  78. </div>
  79. <div class="copyright">
  80. <p>Version 1.5</p>
  81. </div>
  82. <%if instr(em_code,"BX")=0 Then%>
  83. <div class="statement">***注意事项***<br>所有业务务必全面录入客户资料,如发现有客户重复第一时间与前录入人沟通并妥善将与客户沟通的内容交接到原录入人,如故意隐瞒或者选择无视不交接,自愿接受退还客户及停止一个月官网询盘客户推送的惩罚,情节严重者按照违反公司利益进行辞退!
  84. </div>
  85. <%End If%>
  86. </div>