| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%@ page contentType="text/html;charset=GBK"%>
- <div class="tc_l_bg fl">
- <div class="tc_l_new b2 cen_ico f1">
- <img src="/shares/images/master1/rw_ico.png" width="24" height="23" /> 会议通知
- </div>
- <div class="tc_menu_new_bg">
- <div id="next">
- <a href="#" onclick="item('MTMeetingAction.do?task=printSignInfo&meeting_id=<%=meeting_id%>');">
- <div class="tc_menu_new fl">
- <div class="new_icon">
- <img src="/shares/images/master1/icon_new_liebiao.png" width="25" height="29" />
- </div>
- <div class="tc_menu_new_tx">
- <p>生成签到表</p>
- </div>
- </div>
- </a>
- <a href="#" onclick="item('MTMeetingAction.do?task=infoSign&meeting_id=<%=meeting_id%>');">
- <div class="tc_menu_new fl">
- <div class="new_icon">
- <img src="/shares/images/master1/eu_new_richeng.png" width="25" height="29" />
- </div>
- <div class="tc_menu_new_tx">
- <p>会议签收情况</p>
- </div>
- </div>
- </a>
- <!-- <a href="#" onclick="item('MTMeetingAction.do?task=toList');">
- <div class="tc_menu b4 fl f2">
- <img src="/shares/images/master1/xiangmu_ico.png" width="20"height="21" />返回
- </div>
- </a> -->
- </div>
-
- <div class="img_new_bnt_bg fl">
- <a href="#" onclick="item('MTMeetingAction.do?task=toList');">
- <input type="button" id="page_bnt" class="img_new_bnt" value="返回" />
- </a>
- </div>
- </div> </div>
-
- <script type="text/javascript">
- function pageBnt(){
- var next = $("#page_bnt").val();
- if(next=="下一页"){
- $("#next_up").show();
- $("#next").hide();
- $("#page_bnt").val("上一页");
- }else{
- $("#next_up").hide();
- $("#next").show();
- $("#page_bnt").val("下一页");
- }
- }
- </script>
|