123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <%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:"technicalDemandManage",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>技术需求ID</th>
- <th>解决方案名称</th>
- <th>解决方案说明</th>
- <th>提交时间</th>
- <th>状态</th>
- <th></th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in solutionInfo!){%>
- <tr>
- <td>${tempDateLP.index}</td>
- <td>${tempDate.demandId!''}</td>
- <td>${tempDate.name!''}</td>
- <td>${tempDate.explains!''}</td>
- <td>${tempDate.createDate!''}</td>
- <td>${tempDate.state!''}</td>
- <td>
- <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
- <a class="btn btn-xs btn-info" href="${contextPath}/technicalDemandAudit/auditSolution?id=${tempDate.id}" target="_blank" data-toggle="tooltip" data-placement="auto" title="查看方案详情">
- <i class="icon-flag bigger-120"></i>
- </a>
- <a class="btn btn-xs btn-info" href="javascript:todel('${contextPath}/technicalDemandAudit/auditSolution?id=${product.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}/technicalDemandAudit/auditSolution?id=${product.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="9">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- </div>
- </div>
|