listPage.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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}/MyTransactionApplication/getMyTransactionApplicationList?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. <div class="table-fa">
  22. <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" >
  23. <thead>
  24. <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
  25. <th>序号</th>
  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.username}</td>
  41. <td>${tempDate.productname}</td>
  42. <td>${tempDate.producttime}</td>
  43. <td>${tempDate.description}</td>
  44. <td>
  45. <%if(tempDate.transactionStatus == 0){%>
  46. <font color="blue">未开始</font>
  47. <%}else if(tempDate.transactionStatus == 1){%>
  48. <font color="breen">交易中</font>
  49. <%}else if(tempDate.transactionStatus == 2){%>
  50. <font color="green">交易成功</font>
  51. <%}else if(tempDate.transactionStatus == 2){%>
  52. <font color="red">交易失败</font>
  53. <%}%>
  54. </td>
  55. <td>
  56. <%if(tempDate.applicantStatus == 0){%>
  57. <font color="blue">未提交</font>
  58. <%}else if(tempDate.applicantStatus == 1){%>
  59. <font color="breen">成功</font>
  60. <%}else if(tempDate.applicantStatus == 2){%>
  61. <font color="red">失败</font>
  62. <%}%>
  63. </td>
  64. <td>${tempDate.applicantDescription}</td>
  65. <td style="width:110px;">
  66. <%if(tempDate.applicantStatus == 0){%>
  67. <a href="${contextPath}/MyTransactionApplication/toedit?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
  68. <div class="btn1" title="操作">
  69. <i class="icon-edit"></i>
  70. </div>
  71. </a>
  72. <%}else{%>
  73. <font color="red">已经完成处理</font>
  74. <%}%>
  75. </td>
  76. </tr>
  77. <%}elsefor{%>
  78. <tr>
  79. <td colspan="12">没有记录!</td>
  80. </tr>
  81. <%}%>
  82. </tbody>
  83. </table>
  84. <%include("/WebPages_170421/personalPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/MyTransactionApplication/getMyTransactionApplicationList?code=" + code!'' + "&pageNumber=", "urlParas": urlParas!''}){}%>
  85. </div>
  86. </div>
  87. </div>
  88. <%}%>