123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <%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:"Manage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <form class="form-horizontal" role="form" action="" method="post">
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 解决方案征集截止日期: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${technicalDemandInfo.endDate} </label>
- </div>
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 创建日期: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${technicalDemandInfo.createDate} </label>
- </div>
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 需求名称: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${technicalDemandInfo.name} </label>
- </div>
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 需求说明: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${technicalDemandInfo.explains} </label>
- </div>
- </form>
- <!-- /span -->
- </div>
- <div class="col-xs-12">
- <div class="row">
- <form id="searchForm" action="${contextPath}/TechnicalDemandSolution/getTechnicalDemandList" method="post" class="form-horizontal">
- <a class="btn btn-xs btn-success" href="${contextPath}/TechnicalDemandSolution/toSolution?pageNumber=${pageNumber!1}&id=${technicalDemandInfo.id}">
- <i class="icon-ok bigger-120">添加解决方案</i>
- </a>
- </form>
- </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>技术需求ID</th>
- <th>解决方案名称</th>
- <th>提交时间</th>
- <th> 状态 </th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in solutionList!){%>
- <tr>
- <td>${tempDateLP.index}</td>
- <td>${tempDate.enterpriseName!''}</td>
- <td>${tempDate.demandId!''}</td>
- <td>${tempDate.name!''}</td>
- <td>${tempDate.createDate!''}</td>
- <td>
- <%if(tempDate.state == 0){%>
- <font color="wathet">保存</font>
- <%}else if(tempDate.state == 1){%>
- <font color="blue">待审核</font>
- <%}else if(tempDate.state == 2){%>
- <font color="Orange">企业拒绝</font>
- <%}else if(tempDate.state == 3){%>
- <font color="Violet">待联盟审核</font>
- <%}else if(tempDate.state == 4){%>
- <font color="red">联盟拒绝</font>
- <%}else if(tempDate.state == 5){%>
- <font color="green">确认立项</font>
- <%}%>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="9">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <%}%>
|