listPage.html 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <%var cssPar = {%>
  2. <link href="${contextPath}/WebPages_170421/css/personal/list.css" rel="stylesheet" type="text/css">
  3. <%};%>
  4. <%var jsPar = {%>
  5. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/personal/list.js"></script>
  6. <%};%>
  7. <%layout("/WebPages_170421/personalPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
  8. <div class="container">
  9. <div class="conent">
  10. <span class="nin">您当前的位置:</span>
  11. <a href="/" class="yiji">首页</a>
  12. <span class="nin"> > </span>
  13. <a href="/toindex" class="yiji">个人中心</a>
  14. <span class="nin"> > </span>
  15. <a href="${contextPath}/tApplyAuthentication/tApplyAuthenticationlist?pageNumber=1" class="yiji">交易申请认证</a>
  16. </div>
  17. </div>
  18. <div class="container" >
  19. <% include("/WebPages_170421/personalPages/commonPage/_navigation.html"){} %>
  20. <div class="Dlrt">
  21. <input type="hidden" name="pageNumber" value="1" />
  22. <div class="table-fa">
  23. <table border="1" style="border-bottom:1px solid #cccccc; border-left:1px solid #f6f7f8; border-top:1px solid #f6f7f8; border-right:1px solid #cccccc;" width="915px" >
  24. <thead>
  25. <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
  26. <th>序号</th>
  27. <th>交易信息</th>
  28. <th>交易信息发布用户</th>
  29. <th>申请用户</th>
  30. <th>创建时间</th>
  31. <th>申请人交易结果标记</th>
  32. <th>发布人交易结果标记</th>
  33. <th>交易申请说明</th>
  34. <th>当前交易状态</th>
  35. <th> 操 作 </th>
  36. </tr>
  37. </thead>
  38. <tbody id="t1">
  39. <%for(tempDate in datelist!){%>
  40. <tr style=" height: 40px;">
  41. <td>${tempDateLP.index}</td>
  42. <td>${tempDate.productname!tempDate.supplydemandname}</td>
  43. <td>${tempDate.fbusername!''}</td>
  44. <td>${tempDate.squsername!''}</td>
  45. <td>${tempDate.createDate!''}</td>
  46. <td>
  47. <%if(tempDate.applicantStatus == 0){%>
  48. <font color="green">未提交</font>
  49. <%}else if(tempDate.applicantStatus == 1){%>
  50. <font color="blue">成功</font>
  51. <%}else if(tempDate.applicantStatus == 2){%>
  52. <font color="red">失败</font>
  53. <%}%>
  54. </td>
  55. <td>
  56. <%if(tempDate.publisherStatus == 0){%>
  57. <font color="green">未提交</font>
  58. <%}else if(tempDate.publisherStatus == 1){%>
  59. <font color="blue">成功</font>
  60. <%}else if(tempDate.publisherStatus == 2){%>
  61. <font color="red">失败</font>
  62. <%}%>
  63. </td>
  64. <td>${tempDate.description!''}</td>
  65. <td>
  66. <%if(tempDate.state == 0){%>
  67. <font color="green">未开始</font>
  68. <%}else if(tempDate.state == 1){%>
  69. <font color="blue">交易中</font>
  70. <%}else if(tempDate.state == 2){%>
  71. <font color="black">交易成功</font>
  72. <%}else if(tempDate.state == 2){%>
  73. <font color="red">交易失败</font>
  74. <%}%>
  75. </td>
  76. <td style="width:70px;">
  77. <a href="javascript:" onclick="adopt()">
  78. <div class="btn1" title="认证成功">
  79. <i class="icon-check" ></i>
  80. </div>
  81. </a>
  82. <a href="javascript:" onclick="del()">
  83. <div class="btn1 bgli" title="认证失败">
  84. <i class="icon-ban-circle" ></i>
  85. </div>
  86. </a>
  87. </td>
  88. </tr>
  89. <div id="box1">
  90. <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认认证成功吗?</p>
  91. <a href="${contextPath}/tApplyAuthentication/edit?id=${tempDate.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  92. <input type="button" onclick="yes1()" value="确定" class="delBtn">
  93. </a>
  94. <input type="button" onclick="no1()" value="取消" class="delBtn m0" >
  95. </div>
  96. <div id="box">
  97. <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认认证失败吗?</p>
  98. <a href="${contextPath}/tApplyAuthentication/edit?id=${tempDate.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  99. <input type="button" onclick="yes()" value="确定" class="delBtn">
  100. </a>
  101. <input type="button" onclick="no()" value="取消" class="delBtn m0" >
  102. </div>
  103. <%}elsefor{%>
  104. <tr>
  105. <td colspan="12">没有记录!</td>
  106. </tr>
  107. <%}%>
  108. </tbody>
  109. </table>
  110. <%include("/WebPages_170421/personalPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/tApplyAuthentication/tApplyAuthenticationlist?pageNumber=", "urlParas": urlParas!''}){}%>
  111. </div>
  112. </div>
  113. </div>
  114. <%}%>