12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <%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}/MyTransactionRequest/getMyTransactionRequestList?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 == 3){%>
- <font color="red">交易失败</font>
- <%}%>
- </td>
-
- <td>
- <%if(tempDate.publisherStatus == 0){%>
- <font color="blue">未提交</font>
- <%}else if(tempDate.publisherStatus == 1){%>
- <font color="breen">成功</font>
- <%}else if(tempDate.publisherStatus == 2){%>
- <font color="red">失败</font>
- <%}%>
- </td>
- <td>${tempDate.publisherDescription}</td>
- <td style="width:110px;">
- <%if(tempDate.publisherStatus == 0){%>
- <a href="${contextPath}/MyTransactionRequest/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+"/MyTransactionRequest/getMyTransactionRequestList?code=" + code!'' + "&pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- </div>
- </div>
- <%}%>
|