1234567891011121314151617181920212223242526272829303132333435 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <script>
- function guanbihist(){
- $('#selectmaskdiv').fadeOut(100);
- $('#selectdiv').slideUp(0);
- }
- </script>
- <div class="theme-popover" id="selectmaskdiv" style="width: 700px;">
- <div class="theme-poptit">
- <div class="popTitle">
- <h4>流程历史</h4>
- </div>
- <div class="close">
- <a href="#" title="关闭" onclick="guanbihist()" >×</a>
- </div>
- </div>
-
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;overflow-y: auto;width: 700px;">
- <table class="main_table" cellpadding="0" cellspacing="0" style="width: 99.9%">
- <tr>
- <th width="5%">序号</th>
- <th width="20%">操作人</th>
- <th width="20%">操作时间</th>
- <th width="15%">流程步骤</th>
- <th width="15%">处理结果</th>
- <th width="25%">处理意见</th>
- </tr>
- <tbody id="hisList">
-
- </tbody>
- </table>
- </div>
- </div>
- <div class="theme-popover-mask" id="selectdiv"></div>
|