1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <%};%>
- <%layout("/ace/commonPage/_layout.html", {nav: "交易请求管理",meunsel:"MyTransactionRequestManage",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 == 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>
- <%if(tempDate.publisherStatus == 0){%>
- <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
- <a class="btn btn-xs btn-info" href="${contextPath}/MyTransactionRequest/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+"/MyTransactionRequest/getMyTransactionRequestList?code=" + code!'' + "&pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
|