myd-jgtj-list.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>电话调研</title>
  6. <script type="text/javascript" src="../../commons/js/survey-all.js"></script>
  7. <script type="text/javascript" src="./js/myd-jgtj-list.js"></script>
  8. </head>
  9. <body>
  10. <div class="clearfix">
  11. <div class="main-tit">
  12. <h2>
  13. 问卷结果
  14. </h2>
  15. </div>
  16. <div class="p20">
  17. <div class="mb15">
  18. <center><span style="font-size: 18px;color: black;">《</span><span id="subjecttitle" style="font-size: 18px;color: black;"></span><span style="font-size: 18px;color: black;">》--满意度调查</span></center>
  19. </div>
  20. <div class="relative f12">
  21. <!-- 共有-->
  22. <!-- <span class="c-org">50</span> 条-->
  23. <!-- 状态: -->
  24. <select id="statusV" style="display: none;">
  25. <option value="">全部</option>
  26. <option value="2">已完成</option>
  27. <option value="1">待调查</option>
  28. <option value="3">呼叫中</option>
  29. </select>
  30. <!-- <input type="button" class="btn btn-w100" value="查询" onclick="search();">-->
  31. <!-- <a href="/WbjUI/wbj2/business/survey/downFile/wavepad.rar" class="absolute" -->
  32. <!-- style="right: 15px; top: 0;" id="xzyy" >下载语音播放器 </a> -->
  33. <!-- -->
  34. <a href="" class="absolute" id="tjgk"
  35. style="right: 115px; top: 0;">统计概况 </a>
  36. <!--<a href="javascript:;" class="btn btn-w-auto btn-gray fr" id="backBtn" onclick="window.history.back(-1)" style="margin: 10px;"><i class="icon icon-back"></i>返回</a>
  37. --></div>
  38. <div class="mt45">
  39. <table class="tb tb-hover" width="100%" id="tableShow" >
  40. <tr>
  41. <th width="50">
  42. <!-- <input type="checkbox" name="dhdy" />-->
  43. 序号
  44. </th>
  45. <th>
  46. 答题者
  47. </th>
  48. <th >
  49. 答题状态
  50. </th>
  51. <th >
  52. 答卷时间
  53. </th>
  54. <th >
  55. 操作
  56. </th>
  57. </tr>
  58. <td colspan="5">
  59. <div class="pager_container">
  60. <input id="pagenumber" name="pagenumber" type="hidden"
  61. value="1" />
  62. <input id="pagesize" name="pagesize" value="10" type="hidden" />
  63. <input id="defaultsize" name="defaultsize" value="10"
  64. type="hidden" />
  65. <div id="pager" class='pager'></div>
  66. </div>
  67. </td>
  68. </tr>
  69. </table>
  70. </div>
  71. </div>
  72. </div>
  73. <div class="mask" style="display: none;" ></div>
  74. <div class="popbox popbox-w600" id="setting3" style="display: none;" >
  75. <div class="pop-header">下载<a href="javascript:;" class="icon btn-closepop" onclick="closepop('setting3')"></a></div>
  76. <div class="pop-con-box">
  77. <div class="pop-con" id="Context">
  78. </div>
  79. </div>
  80. <!-- <div class="pop-footer t-right"><input type="button" class="btn btn-w100 mr10" value="确定" onclick="submintBut();" /><input type="button" class="btn btn-gray btn-w100" value="取消" onclick="closepop('setting3');" /></div>-->
  81. </div>
  82. </body>
  83. <script type="text/javascript">
  84. /*弹窗事件*/
  85. function showpop(id){
  86. $('#'+id).prev('.mask').show().end().fadeIn();
  87. setPopAlign(id);
  88. }
  89. function closepop(id){
  90. $('#'+id).prev('.mask').hide().end().fadeOut();
  91. }
  92. /* 弹窗弹出时设置弹窗垂直居中 */
  93. function setPopAlign(id){
  94. var winClientHeight= $(window).height();
  95. var popboxCon=$("#"+id).find(".pop-con-box").eq(0);
  96. var popboxConHeight=$("#"+id).find(".pop-con").eq(0).outerHeight();
  97. var popboxHeader=$("#"+id).find(".pop-header").eq(0);
  98. var popboxHeaderHeight=popboxHeader.outerHeight();
  99. var popboxFooter=$("#"+id).find(".pop-footer").eq(0);
  100. var popboxFooterHeight=popboxFooter.outerHeight();
  101. var popboxHeight=popboxConHeight+popboxHeaderHeight+popboxFooterHeight;
  102. if(popboxHeight>=winClientHeight) {
  103. popboxCon.height(winClientHeight-popboxHeaderHeight-popboxFooterHeight).css({"overflow-y":"auto"}).find(".pop-con").css({paddingRight:0});
  104. $("#"+id).css({marginTop:"-"+winClientHeight/2+"px"});
  105. }
  106. else {
  107. popboxCon.height(popboxConHeight).css({"overflow-y":""}).find(".pop-con").css({paddingRight:20});
  108. // popboxHeight=popboxHeight;
  109. // alert(popboxHeight);
  110. $("#"+id).css({marginTop:"-"+popboxHeight/2+"px"});
  111. }
  112. }
  113. </script>
  114. </html>