listPage.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <%var cssParam = {%>
  2. <%};%>
  3. <%var jsParam = {%>
  4. <%};%>
  5. <%layout("/ace/commonPage/_layout.html", {nav: "交易申请管理",meunsel:"MyTransactionApplicationManage",jsParam:jsParam,cssParam:cssParam}) {%>
  6. <div class="col-xs-12">
  7. <div class="row">
  8. <div class="table-responsive">
  9. <table id="sample-table-1"
  10. class="table table-striped table-bordered table-hover">
  11. <thead>
  12. <tr>
  13. <th>序号</th>
  14. <th>发布人名称</th>
  15. <th>产品服务名称</th>
  16. <th>产品创建时间</th>
  17. <th>交易申请说明</th>
  18. <th>交易状态</th>
  19. <th>申请人交易结果标记</th>
  20. <th>申请人交易结果说明</th>
  21. <th>交易结果操作 </th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <%for(tempDate in dateList!){%>
  26. <tr>
  27. <td>${tempDateLP.index}</td>
  28. <td>${tempDate.username}</td>
  29. <td>${tempDate.productname}</td>
  30. <td>${tempDate.producttime}</td>
  31. <td>${tempDate.description}</td>
  32. <td>
  33. <%if(tempDate.transactionStatus == 0){%>
  34. <font color="blue">未开始</font>
  35. <%}else if(tempDate.transactionStatus == 1){%>
  36. <font color="breen">交易中</font>
  37. <%}else if(tempDate.transactionStatus == 2){%>
  38. <font color="green">交易成功</font>
  39. <%}else if(tempDate.transactionStatus == 2){%>
  40. <font color="red">交易失败</font>
  41. <%}%>
  42. </td>
  43. <td>
  44. <%if(tempDate.applicantStatus == 0){%>
  45. <font color="blue">未提交</font>
  46. <%}else if(tempDate.applicantStatus == 1){%>
  47. <font color="breen">成功</font>
  48. <%}else if(tempDate.applicantStatus == 2){%>
  49. <font color="red">失败</font>
  50. <%}%>
  51. </td>
  52. <td>${tempDate.applicantDescription}</td>
  53. <td>
  54. <%if(tempDate.applicantStatus == 0){%>
  55. <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
  56. <a class="btn btn-xs btn-info" href="${contextPath}/MyTransactionApplication/toedit?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}" data-toggle="tooltip" data-placement="auto" title="操作">
  57. <i class="icon-edit bigger-120"></i>
  58. </a>
  59. </div>
  60. <%}else{%>
  61. <font color="red">已经完成处理</font>
  62. <%}%>
  63. </td>
  64. </tr>
  65. <%}elsefor{%>
  66. <tr>
  67. <td colspan="9">没有记录!</td>
  68. </tr>
  69. <%}%>
  70. </tbody>
  71. </table>
  72. </div>
  73. <div class="pull-right">
  74. <%include("/ace/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/MyTransactionApplication/getMyTransactionApplicationList?code=" + code!'' + "&pageNumber=", "urlParas": urlParas!''}){}%>
  75. </div>
  76. <!-- /.table-responsive -->
  77. </div>
  78. <!-- /span -->
  79. </div>
  80. <!-- /row -->
  81. <%}%>