1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <style>
- .footer{
- display: none;
- }
- #tabniubi {
- width: 100%;
- margin: 10px 0;
- background-color: #fff;
- color: #5f5f5f;
- }
- #tabniubi th {
- padding: 7px 15px;
- min-height: 20px;
- height: 38px;
- line-height:38px;
- text-align: center;
- /* font-size: 14px; */
- border-width: 1px;
- border-style: solid;
- border-color: #e2e2e2;
- font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
- }
- #tabniubi tr:first-child {
- padding: 0;
- min-height: 0;
- line-height: 0;
- border-width: 0;
- border-style: none;
- border-color: #fff;
- font-size: 0;
- }
- #tabniubi tr:first-child th {
- padding: 0;
- min-height: 0;
- line-height: 0;
- border-width: 0;
- border-style: none;
- border-color: #fff;
- font-size: 0;
- height: 0 !important;
- }
- .form-title {
- background-color: rgb(241, 241, 241);
- color: rgb(95, 95, 95);
- border-color: rgb(241, 241, 241);
- font-weight: 600;
- text-align: right !important;
- }
- </style>
- <div class="bg-white">
- <!--<div id="logList" class="log-timeline p-3"></div>-->
- <table class="layui-table layui-table-form" style="margin-top:12px" id="tabniubi" cellpadding="1" cellspacing="1">
- <tr>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- <th style="width: 10%;height: 0;"></th>
- </tr>
- <tr border="1">
-
- {if $detail.check_status != 0}
- <tr>
- <th class="form-title">审批流程</th>
- <th colspan="8">
- <div class="flow-flexbox check-items flow-flex-row" id="flowListLog">
- <div class="flow-flexbox check-item flow-flex-row">
- <i class="layui-icon layui-icon-add-circle" data-ok=""></i>
- <div class="check-item-name">{$detail.create_user}</div>
- <div class="check-item-status">提交申请</div>
- <span class="layui-icon layui-icon-right"></span>
- </div>
- </div>
- </th>
- </tr>
- {/if}
- </table>
- </div>
- <script>
- function log(){
-
- }
-
- </script>
|