view_log.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <style>
  2. .footer{
  3. display: none;
  4. }
  5. #tabniubi {
  6. width: 100%;
  7. margin: 10px 0;
  8. background-color: #fff;
  9. color: #5f5f5f;
  10. }
  11. #tabniubi th {
  12. padding: 7px 15px;
  13. min-height: 20px;
  14. height: 38px;
  15. line-height:38px;
  16. text-align: center;
  17. /* font-size: 14px; */
  18. border-width: 1px;
  19. border-style: solid;
  20. border-color: #e2e2e2;
  21. font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
  22. }
  23. #tabniubi tr:first-child {
  24. padding: 0;
  25. min-height: 0;
  26. line-height: 0;
  27. border-width: 0;
  28. border-style: none;
  29. border-color: #fff;
  30. font-size: 0;
  31. }
  32. #tabniubi tr:first-child th {
  33. padding: 0;
  34. min-height: 0;
  35. line-height: 0;
  36. border-width: 0;
  37. border-style: none;
  38. border-color: #fff;
  39. font-size: 0;
  40. height: 0 !important;
  41. }
  42. .form-title {
  43. background-color: rgb(241, 241, 241);
  44. color: rgb(95, 95, 95);
  45. border-color: rgb(241, 241, 241);
  46. font-weight: 600;
  47. text-align: right !important;
  48. }
  49. </style>
  50. <div class="bg-white">
  51. <!--<div id="logList" class="log-timeline p-3"></div>-->
  52. <table class="layui-table layui-table-form" style="margin-top:12px" id="tabniubi" cellpadding="1" cellspacing="1">
  53. <tr>
  54. <th style="width: 10%;height: 0;"></th>
  55. <th style="width: 10%;height: 0;"></th>
  56. <th style="width: 10%;height: 0;"></th>
  57. <th style="width: 10%;height: 0;"></th>
  58. <th style="width: 10%;height: 0;"></th>
  59. <th style="width: 10%;height: 0;"></th>
  60. <th style="width: 10%;height: 0;"></th>
  61. <th style="width: 10%;height: 0;"></th>
  62. <th style="width: 10%;height: 0;"></th>
  63. </tr>
  64. <tr border="1">
  65. {if $detail.check_status != 0}
  66. <tr>
  67. <th class="form-title">审批流程</th>
  68. <th colspan="8">
  69. <div class="flow-flexbox check-items flow-flex-row" id="flowListLog">
  70. <div class="flow-flexbox check-item flow-flex-row">
  71. <i class="layui-icon layui-icon-add-circle" data-ok=""></i>
  72. <div class="check-item-name">{$detail.create_user}</div>
  73. <div class="check-item-status">提交申请</div>
  74. <span class="layui-icon layui-icon-right"></span>
  75. </div>
  76. </div>
  77. </th>
  78. </tr>
  79. {/if}
  80. </table>
  81. </div>
  82. <script>
  83. function log(){
  84. }
  85. </script>