reviewListPage.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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}/transactionApplyAudit/toReview?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. </tr>
  35. </thead>
  36. <tbody id="t1">
  37. <%for(tempDate in datelist!){%>
  38. <tr style=" height: 40px;">
  39. <td>${tempDateLP.index}</td>
  40. <td>${tempDate.productname!tempDate.supplydemandname}</td>
  41. <td>${tempDate.fbusername!''}</td>
  42. <td>${tempDate.squsername!''}</td>
  43. <td>${tempDate.createDate!''}</td>
  44. <td>${tempDate.description!''}</td>
  45. <td>
  46. <%if(tempDate.state == 0){%>
  47. <font color="green">未开始</font>
  48. <%}else if(tempDate.state == 1){%>
  49. <font color="blue">交易中</font>
  50. <%}else if(tempDate.state == 2){%>
  51. <font color="red">交易成功</font>
  52. <%}else if(tempDate.state == 2){%>
  53. <font color="black">交易失败</font>
  54. <%}%>
  55. </td>
  56. <td style="width:110px;">
  57. <a href="${contextPath}/transactionApplyAudit/review?id=${tempDate.id}">
  58. <div class="btn1" style="margin-left:12px;" title="详情">
  59. <i class="icon-folder-open-alt"></i>
  60. </div>
  61. </a>
  62. <a href="javascript:" onclick="adopt()">
  63. <div class="btn1" title="认证成功">
  64. <i class="icon-check" ></i>
  65. </div>
  66. </a>
  67. <a href="javascript:" onclick="del()">
  68. <div class="btn1 bgli" title="认证失败">
  69. <i class="icon-ban-circle" ></i>
  70. </div>
  71. </a>
  72. </td>
  73. </tr>
  74. <div id="box1">
  75. <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认认证成功吗?</p>
  76. <a href="${contextPath}/transactionApplyAudit/audit?id=${tempDate.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  77. <input type="button" onclick="yes1()" value="确定" class="delBtn">
  78. </a>
  79. <input type="button" onclick="no1()" value="取消" class="delBtn m0" >
  80. </div>
  81. <div id="box">
  82. <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认认证失败吗?</p>
  83. <a href="${contextPath}/transactionApplyAudit/audit?id=${tempDate.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  84. <input type="button" onclick="yes()" value="确定" class="delBtn">
  85. </a>
  86. <input type="button" onclick="no()" value="取消" class="delBtn m0" >
  87. </div>
  88. <%}elsefor{%>
  89. <tr>
  90. <td colspan="12">没有记录!</td>
  91. </tr>
  92. <%}%>
  93. </tbody>
  94. </table>
  95. <%include("/WebPages_170421/personalPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/transactionApplyAudit/toReview?pageNumber=", "urlParas": urlParas!''}){}%>
  96. </div>
  97. </div>
  98. </div>
  99. <%}%>