record.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <style type="text/css">
  2. .sm-st-info span {
  3. display: block;
  4. font-size: 24px;
  5. font-weight: 600;
  6. }
  7. .stats .stat-icon {
  8. color: #28bb9c;
  9. display: inline-block;
  10. font-size: 26px;
  11. text-align: center;
  12. vertical-align: middle;
  13. width: 50px;
  14. float: left;
  15. }
  16. body{
  17. background:#fff !important;
  18. }
  19. th{
  20. font-weight: unset !important;
  21. padding-top:17px !important;
  22. padding-bottom: 17px !important;
  23. }
  24. td{
  25. font-weight: unset !important;
  26. padding-top:15px !important;
  27. padding-bottom: 15px !important;
  28. }
  29. .qd_table_color{
  30. color:#909399;
  31. }
  32. </style>
  33. <div class="row">
  34. <div class="col-xs-12">
  35. <div class="div-box">
  36. <div style="padding-top: 15px;padding-left:15px;margin-bottom:10px;">
  37. </div>
  38. <div id="echart" style="width:100%;height: 457px"></div>
  39. </div>
  40. </div>
  41. <div class="col-xs-12" style="padding-left:5%;padding-right:5%;padding-top:3%;">
  42. <table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%" style="">
  43. <thead>
  44. <tr class="qd_table_color">
  45. <th style="text-align: center; vertical-align: middle; " data-field="name">
  46. <div class="th-inner ">员工姓名</div>
  47. <div class="fht-cell"></div>
  48. </th>
  49. <th style="text-align: center; vertical-align: middle; " data-field="subname">
  50. <div class="th-inner ">跟进次数</div>
  51. <div class="fht-cell"></div>
  52. </th>
  53. <th style="text-align: center; vertical-align: middle; " data-field="owner_staff_id">
  54. <div class="th-inner ">跟进客户数</div>
  55. <div class="fht-cell"></div>
  56. </th>
  57. </tr>
  58. </thead>
  59. <tbody data-listidx="0">
  60. {foreach name="customInfo" id="v"}
  61. <tr data-index="0" style="">
  62. <td style="text-align: center; vertical-align: middle; ">
  63. {$v.name}
  64. </td>
  65. <td style="text-align: center; vertical-align: middle; ">{$v.addcustomer}</td>
  66. <td style="text-align: center; vertical-align: middle; ">{$v.usecustomer}</td>
  67. </tr>
  68. {/foreach}
  69. </tbody>
  70. </table>
  71. </div>
  72. </div>
  73. <script>
  74. var Orderdata = {
  75. customerdata:{:json_encode($customerdata)}
  76. };
  77. </script>