123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <%};%>
- <%layout("/ace/commonPage/_layout.html", {nav: "交易申请管理",meunsel:"MyTransactionApplicationManage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <div class="row">
- <div class="table-responsive">
- <table id="sample-table-1"
- class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th>序号</th>
- <th>发布人名称</th>
- <th>产品服务名称</th>
- <th>产品创建时间</th>
- <th>交易申请说明</th>
- <th>交易状态</th>
- <th>申请人交易结果标记</th>
- <th>申请人交易结果说明</th>
- <th>交易结果操作 </th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in dateList!){%>
- <tr>
- <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>
- <%if(tempDate.applicantStatus == 0){%>
- <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
- <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="操作">
- <i class="icon-edit bigger-120"></i>
- </a>
- </div>
- <%}else{%>
- <font color="red">已经完成处理</font>
- <%}%>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="9">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- <div class="pull-right">
- <%include("/ace/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/MyTransactionApplication/getMyTransactionApplicationList?code=" + code!'' + "&pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
|