123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <%var cssPar = {%>
- <link href="${contextPath}/WebPages_170421/css/personal/list.css" rel="stylesheet" type="text/css">
- <%};%>
- <%var jsPar = {%>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/personal/list.js"></script>
- <%};%>
- <%layout("/WebPages_170421/personalPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
- <div class="container">
- <div class="conent">
- <span class="nin">您当前的位置:</span>
- <a href="/" class="yiji">首页</a>
- <span class="nin"> > </span>
- <a href="/toindex" class="yiji">个人中心</a>
- <span class="nin"> > </span>
- <a href="${contextPath}/MyTransactionApplication/getMyTransactionApplicationList?pageNumber=1" class="yiji">交易申请管理</a>
- </div>
- </div>
- <div class="container" >
- <% include("/WebPages_170421/personalPages/commonPage/_navigation.html"){} %>
- <div class="Dlrt">
- <div class="table-fa">
- <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" >
- <thead>
- <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
- <th>序号</th>
- <th>发布人名称</th>
- <th>产品服务名称</th>
- <th>产品创建时间</th>
- <th>交易申请说明</th>
- <th>交易状态</th>
- <th>申请人交易结果标记</th>
- <th>申请人交易结果说明</th>
- <th>交易结果操作 </th>
- </tr>
- </thead>
- <tbody id="t1">
- <%for(tempDate in dateList!){%>
- <tr style=" height: 40px;">
- <td>${tempDateLP.index}</td>
- <td>${tempDate.username}</td>
- <td>${tempDate.productname}</td>
- <td>${tempDate.producttime}</td>
- <td>${tempDate.description}</td>
- <td>
- <%if(tempDate.transactionStatus == 0){%>
- <font color="blue">未开始</font>
- <%}else if(tempDate.transactionStatus == 1){%>
- <font color="breen">交易中</font>
- <%}else if(tempDate.transactionStatus == 2){%>
- <font color="green">交易成功</font>
- <%}else if(tempDate.transactionStatus == 2){%>
- <font color="red">交易失败</font>
- <%}%>
- </td>
- <td>
- <%if(tempDate.applicantStatus == 0){%>
- <font color="blue">未提交</font>
- <%}else if(tempDate.applicantStatus == 1){%>
- <font color="breen">成功</font>
- <%}else if(tempDate.applicantStatus == 2){%>
- <font color="red">失败</font>
- <%}%>
- </td>
- <td>${tempDate.applicantDescription}</td>
- <td style="width:110px;">
- <%if(tempDate.applicantStatus == 0){%>
- <a href="${contextPath}/MyTransactionApplication/toedit?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
- <div class="btn1" title="操作">
- <i class="icon-edit"></i>
- </div>
- </a>
- <%}else{%>
- <font color="red">已经完成处理</font>
- <%}%>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="12">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- <%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!''}){}%>
- </div>
- </div>
- </div>
- <%}%>
|