123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- function todel(url,msg){
- bootbox.dialog({
- title: "系统提示",
- message: msg,
- locale:"zh_CN",
- buttons: {
- cancel: {label: "取消",className: "btn-cancel",callback: function() {}},
- ok: {label: "确定",className: "btn-success",
- callback: function() {
- window.location.href = url;
- }
- }
- }
- });
- }
- </script>
- <%};%>
- <%layout("/ace/commonPage/_layout.html", {nav: "交易申请认证",meunsel:"TApplyAuthenticationManage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <div class="row">
- <input type="hidden" name="pageNumber" value="1" />
- </div>
- </div>
- <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>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in datelist!){%>
- <tr>
- <td>${tempDateLP.index}</td>
- <td>${tempDate.productname!tempDate.supplydemandname}</td>
- <td>${tempDate.fbusername!''}</td>
- <td>${tempDate.squsername!''}</td>
- <td>${tempDate.createDate!''}</td>
- <td>
- <%if(tempDate.applicantStatus == 0){%>
- <font color="green">未提交</font>
- <%}else if(tempDate.applicantStatus == 1){%>
- <font color="blue">成功</font>
- <%}else if(tempDate.applicantStatus == 2){%>
- <font color="red">失败</font>
- <%}%>
- </td>
- <td>
- <%if(tempDate.publisherStatus == 0){%>
- <font color="green">未提交</font>
- <%}else if(tempDate.publisherStatus == 1){%>
- <font color="blue">成功</font>
- <%}else if(tempDate.publisherStatus == 2){%>
- <font color="red">失败</font>
- <%}%>
- </td>
- <td>${tempDate.description!''}</td>
- <td>
- <%if(tempDate.state == 0){%>
- <font color="green">未开始</font>
- <%}else if(tempDate.state == 1){%>
- <font color="blue">交易中</font>
- <%}else if(tempDate.state == 2){%>
- <font color="black">交易成功</font>
- <%}else if(tempDate.state == 2){%>
- <font color="red">交易失败</font>
- <%}%>
- </td>
- <td>
- <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
- <a class="btn btn-xs btn-info" href="javascript:todel('${contextPath}/admin/tApplyAuthentication/edit?id=${tempDate.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','交易成功。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="认证成功">
- <i class="icon-check bigger-120"></i>
- </a>
- <a class="btn btn-xs btn-danger" href="javascript:todel('${contextPath}/admin/tApplyAuthentication/edit?id=${tempDate.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','交易失败。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="认证失败">
- <i class="icon-ban-circle bigger-120"></i>
- </a>
- </div>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="10">没有记录!</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+"/admin/tApplyAuthentication/tApplyAuthenticationlist?pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
|