resource_evaluation_analysis_list.jsp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ include file="../common/common.jsp"%>
  3. <title>电视剧资源评价分析</title>
  4. </head>
  5. <body onkeydown="keyLogin()">
  6. <%@ include file="../common/head.jsp"%>
  7. <div class="screen main">
  8. <%@ include file="../common/left.jsp" %>
  9. <div class="main-content">
  10. <div class="btn-radius">电视剧资源评价分析</div>
  11. <form name="dataForm" action="#" method="post">
  12. <div class="search-group">
  13. <div class="search-item">资源名称&nbsp;&nbsp;<input type="text" id="resourceName" name="resourceName" class="text {text:'请输入关键字'}" size="12" /></div>
  14. <div class="search-item">
  15. <a href="javascript:void(0);" id="resourcEvaluationAnalysisSearch" onclick="getList(1)" class="btn-radius">搜 索</a>
  16. </div>
  17. </div>
  18. </form>
  19. <table class="table mTop10" cellpadding="0" cellspacing="0">
  20. <thead>
  21. <tr>
  22. <th rowspan=2>资源名称</th>
  23. <th rowspan=2>评价人数</th>
  24. <th colspan="6">物证打分</th>
  25. <th colspan="5">人证打分</th>
  26. <th colspan="2">现场打分</th>
  27. <th rowspan="2">评价分</th>
  28. </tr>
  29. <tr>
  30. <th>IP</th>
  31. <th>题材</th>
  32. <th>集数</th>
  33. <th>档期</th>
  34. <th>平台</th>
  35. <th>流量预估</th>
  36. <th>演员</th>
  37. <th>导演</th>
  38. <th>编剧</th>
  39. <th>出品</th>
  40. <th>发行</th>
  41. <th>同期竟品</th>
  42. <th>前期宣发</th>
  43. </tr>
  44. </thead>
  45. <tbody id="analysisList"></tbody>
  46. </table>
  47. <div class="mTop20">
  48. <div id="analysisPage" class="rFloat"></div>
  49. 累计 <span id="analysisCount" class="blue">0</span> 条
  50. </div>
  51. </div>
  52. <div class="main-content">
  53. <div id="evaluateListHeader" class="mTop20 hd-title">评价列表</div>
  54. <div class="box-pd">
  55. <table class="table table-gray" cellpadding="0" cellspacing="0">
  56. <thead>
  57. <tr>
  58. <th>评价人姓名</th>
  59. <th colspan="6">物证打分</th>
  60. <th colspan="5">人证打分</th>
  61. <th colspan="2">现场打分</th>
  62. <th rowspan="2">评价分</th>
  63. </tr>
  64. <tr>
  65. <th>项目</th>
  66. <th>IP</th>
  67. <th>题材</th>
  68. <th>集数</th>
  69. <th>档期</th>
  70. <th>平台</th>
  71. <th>流量预估</th>
  72. <th>演员</th>
  73. <th>导演</th>
  74. <th>编剧</th>
  75. <th>出品</th>
  76. <th>发行</th>
  77. <th>同期竟品</th>
  78. <th>前期宣发</th>
  79. </tr>
  80. </thead>
  81. <tbody id="evaluateList"></tbody>
  82. </table>
  83. <div class="mTop20">
  84. <div id="evaluatePage" class="rFloat"></div>
  85. 累计 <span id="evaluateCount" class="blue">0</span> 条
  86. </div>
  87. </div>
  88. </div>
  89. <div class="main-content">
  90. <div id="evaluateListChart" class="mTop20 hd-title">指标分析</div>
  91. <div id="evaluationRanking" style="width: 500px;height:400px;float:left;"></div>
  92. <div id="divergenceCompare" style="width: 500px;height:400px;float:left;"></div>
  93. <div id="scoreCompare" style="width: 500px;height:425px;float:left;"></div>
  94. <div id="scoreRanking" style="width: 500px;height:400px;float:left;"></div>
  95. </div>
  96. <div class="clear"></div>
  97. </div>
  98. <iframe name="hframe" style="display: none;"></iframe>
  99. <%@ include file="../common/footer.jsp"%>
  100. <script type="text/javascript" src="${staticPath}js/analysis/resource_evaluation_analysis.js"></script>
  101. <script type="text/javascript" src="${staticPath}js/echarts/echarts.min.js"></script>
  102. <script type="text/javascript">
  103. //var update_flag = "${funcMap['program_schedule_update']}",delete_flag = "${funcMap['program_schedule_delete']}";
  104. $(function(){
  105. $.resetText();
  106. $(".text").input();
  107. getList(1);
  108. })
  109. function keyLogin(){
  110. if (event.keyCode==13) { //回车键的键值为13
  111. $("#resourcEvaluationAnalysisSearch").click(); //调用搜索按钮的登录事件
  112. }
  113. }
  114. </script>
  115. </body>
  116. </html>