概算展示优化为表格

master
OathK1per 2022-10-27 17:30:57 +08:00
parent 66b0748dd3
commit 9646b6cf2e
4 changed files with 1011 additions and 1362 deletions

View File

@ -88,6 +88,7 @@
input { input {
/*width: 600px;*/ /*width: 600px;*/
width: 100%;
border:0 none; border:0 none;
outline:none; outline:none;
} }
@ -150,38 +151,24 @@
</div> </div>
</div> </div>
<!--startprint--> <!--startprint-->
<div class="am-g am-form-group am-margin-top"> <table id="myTable" class="am-table am-table-bordered">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px; margin-bottom: 13px;" value="部门名称"/></div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)基本信息</th>
<input readonly value="${project.deptName!}"/> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >部门名称:</th>
<td class="table-title" colspan="2" ><input readonly value="${project.deptName!}"/></td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" >项目编号:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px;margin-bottom: 6px;" value="项目编号"/></div> <td class="table-title" colspan="2" ><input readonly value="${project.projectNo!}"/></td>
<div class="am-u-sm-6 am-u-md-6"> </tr>
<#--<textarea style="overflow:auto; background-attachment: fixed; <tr class="am-text-nowrap">
background-repeat: no-repeat; border-style: solid;border-color: #FFFFFF">${project.name}</textarea>--> <th class="table-title" colspan="1" >项目名称:</th>
<input readonly value="${project.projectNo!}"/> <td class="table-title" colspan="5" ><input readonly value="${project.name!}"/></td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >项目类型:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px;margin-bottom: 6px;" value="项目名称"/></div>
<div class="am-u-sm-6 am-u-md-6">
<#--<textarea style="overflow:auto; background-attachment: fixed;
background-repeat: no-repeat; border-style: solid;border-color: #FFFFFF">${project.name}</textarea>-->
<input readonly value="${project.name!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="项目类型"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.type??> <#if project.type??>
<#if (project.type) =1> <#if (project.type) =1>
<input readonly value="工程集成类"/> <input readonly value="工程集成类"/>
@ -193,31 +180,15 @@
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> <th class="table-title" colspan="1" >项目计划开始时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" ><input readonly value="${(project.startDate?string("yyyy-MM-dd"))!}"/></td>
</div> <th class="table-title" colspan="1" >项目计划结束时间:</th>
<td class="table-title" colspan="1" ><input readonly value="${(project.endDate?string("yyyy-MM-dd"))!}"/></td>
<div class="am-g am-form-group am-margin-top"> </tr>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 160px ;margin-bottom: 6px;" value="项目计划开始时间"/></div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="1" >垫资模式:</th>
<input readonly value="${(project.startDate?string("yyyy-MM-dd"))!}"/> <td class="table-title" <#if project.underwrittenMode! == 2> colspan="5" <#else> colspan="1" </#if> >
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 160px ;margin-bottom: 6px;" value="项目计划结束时间"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${(project.endDate?string("yyyy-MM-dd"))!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="垫资模式"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.underwrittenMode??> <#if project.underwrittenMode??>
<#if (project.underwrittenMode) =1> <#if (project.underwrittenMode) =1>
<input readonly value="A类-不垫资(战略合作)"/> <input readonly value="A类-不垫资(战略合作)"/>
@ -228,109 +199,52 @@
<#elseif (project.underwrittenMode) =4> <#elseif (project.underwrittenMode) =4>
<input readonly value="D类-垫资(账期不覆盖)"/> <input readonly value="D类-垫资(账期不覆盖)"/>
</#if> </#if>
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> <#if project.underwrittenMode! == 1>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" >合作对象:</th>
</div> <td class="table-title" colspan="3" ><input readonly value="${project.collaborator!}"/>
<#if project.collaboratorUrl?? && project.collaboratorUrl != "">
<div class="am-g am-form-group am-margin-top" id="coop" <#if project.underwrittenMode! != 1>hidden</#if>> <div class="am-form-file am-text-xs">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="合作对象"/></div> <a href="${project.collaboratorUrl!}" download>
<div class="am-u-sm-6 am-u-md-6"> <i class="am-icon-cloud-upload"></i> 下载附件
<input readonly value="${project.collaborator!}"/> </a>
</div> </div>
<#else>
<#if project.collaboratorUrl?? && project.collaboratorUrl != ""> <div class="am-u-sm-2 am-u-md-4 input-msg"></div>
<div class="am-form-file am-text-xs"> </#if>
<#-- <button type="button" class="am-btn am-btn-primary am-btn-sm">--> </td>
<a href="${project.collaboratorUrl!}" download> </#if>
<i class="am-icon-cloud-upload"></i> 下载附件 <#if project.underwrittenMode! gt 2>
</a> <th class="table-title" colspan="1" >垫资利息:</th>
<#-- </button>--> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.advanceInterestAmount)}元" /></td>
</div> <th class="table-title" colspan="1" >垫资峰值:</th>
<#else> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.advancePeakAmount)}元" /></td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </#if>
</#if> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" >合同金额:</th>
<td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.contractAmount)}元"/></td>
<div class="am-g am-form-group am-margin-top" id="noUnder1" <#if project.underwrittenMode! <= 2>hidden</#if>> <th class="table-title" colspan="1" >项目毛利:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="垫资利息"/></div> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.grossProfit)}元" /></td>
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="1" >项目毛利率:</th>
<input readonly value="${Utils.format(project.advanceInterestAmount)}元" /> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.grossProfitMargin)}%" /></td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >汇智产品金额:</th>
<div class="am-g am-form-group am-margin-top" id="noUnder2" <#if project.underwrittenMode! <= 2>hidden</#if>> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.huizhiProductAmount, '0.00')}元"/></td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="垫资峰值"/></div> <th class="table-title" colspan="1" >华智产品金额:</th>
<div class="am-u-sm-6 am-u-md-6"> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.huazhiProductAmount, '0.00')}元"/></td>
<input readonly value="${Utils.format(project.advancePeakAmount)}元" /> <th class="table-title" colspan="1" >华三产品金额:</th>
</div> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.huasanProductAmount, '0.00')}元"/></td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" >其他产品金额:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="1" ><input readonly value="${Utils.format(project.ziguangOtherAmount, '0.00')}元"/></td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px;margin-bottom: 12px;" value="合同金额"/></div> <th class="table-title" colspan="1" >项目把握度:</th>
<div class="am-u-sm-6 am-u-md-6"> <td class="table-title" colspan="1" >
<input readonly value="${Utils.format(project.contractAmount)}元"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="项目毛利"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.grossProfit)}元" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 100px ;margin-bottom: 12px;" value="项目毛利率"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.grossProfitMargin)}%" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px;" value="汇智产品金额"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.huizhiProductAmount, '0.00')}元"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px;" value="华智产品金额"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.huazhiProductAmount, '0.00')}元"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px;" value="华三产品金额"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.huasanProductAmount, '0.00')}元"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px;" value="其他产品金额"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${Utils.format(project.ziguangOtherAmount, '0.00')}元"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 100px ;margin-bottom: 12px;" value="项目把握度"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.certainty??> <#if project.certainty??>
<#if (project.certainty) =1> <#if (project.certainty) =1>
<input readonly value="A项目成功率80%-100%"/> <input readonly value="A项目成功率80%-100%"/>
@ -342,23 +256,13 @@
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> <th class="table-title" colspan="1" >行业场景应用:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" ><input readonly value="${project.industryScenario!}"/></td>
</div> </tr>
<tr class="am-text-nowrap">
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" >项目解决方案:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px;margin-bottom: 12px;" value="行业场景应用"/></div> <td class="table-title" colspan="1" >
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${project.industryScenario!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px ;margin-bottom: 12px;" value="项目解决方案"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.resolvePlan??> <#if project.resolvePlan??>
<#if (project.resolvePlan!) =1> <#if (project.resolvePlan!) =1>
<input readonly value="公共服务(智慧交通、雪亮工程、治安防控体系等)"/> <input readonly value="公共服务(智慧交通、雪亮工程、治安防控体系等)"/>
@ -370,39 +274,20 @@
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> <th class="table-title" colspan="1" >客户名称:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" ><input readonly value="${project.customer!}"/></td>
</div> <th class="table-title" colspan="1" >最终用户名称:</th>
<td class="table-title" colspan="1" ><input readonly value="${project.terminalCustomer!}"/></td>
</tr>
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 6px;" value="客户名称"/></div> <th class="table-title" colspan="1" >价值及风险:</th>
<div class="am-u-sm-6 am-u-md-6"> <td class="table-title" colspan="5" >
<#-- <textarea style="overflow:auto; background-attachment: fixed; <textarea rows="5" cols="20" style="border-style:none;"
background-repeat: no-repeat; border-style: solid;border-color: #FFFFFF">${project.customer}</textarea>--> >${project.valueRisk!}</textarea>
<input readonly value="${project.customer!}"/> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </table>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px ;margin-bottom: 6px;" value="最终用户名称"/></div>
<div class="am-u-sm-6 am-u-md-6">
<#--<textarea style="overflow:auto; background-attachment: fixed;
background-repeat: no-repeat; border-style: solid;border-color: #FFFFFF">${project.terminalCustomer}</textarea>-->
<input readonly value="${project.terminalCustomer!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 100px;" value="价值及风险"/></div>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${project.valueRisk!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<!--endprint--> <!--endprint-->
</div> </div>
<!--验证表单元素validate end--> <!--验证表单元素validate end-->
@ -420,37 +305,22 @@
</div> </div>
</div> </div>
<div class="am-g am-form-group am-margin-top"> <table id="myTable" class="am-table am-table-bordered">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 100px ;margin-bottom: 12px;" value="项目负责人"/></div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)其他信息</th>
<input readonly value="${project.principal!}"/> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >项目负责人:</th>
<td class="table-title" colspan="1" ><input readonly value="${project.principal!}"/></td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" >预计合同签订时间:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 160px ;margin-bottom: 12px;" value="预计合同签订时间"/></div> <td class="table-title" colspan="1" ><input readonly value="${(project.contractTime?string("yyyy-MM-dd"))!}"/></td>
<div class="am-u-sm-2 am-u-md-2"> <th class="table-title" colspan="1" >项目计划招标时间:</th>
<div class="am-form-group am-form-icon"> <td class="table-title" colspan="1" ><input readonly value="${(project.bidsTime?string("yyyy-MM-dd"))!}"/></td>
<input readonly value="${(project.contractTime?string("yyyy-MM-dd"))!}"/> </tr>
</div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >是否二次合作:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 160px ;margin-bottom: 12px;" value="项目计划招标时间"/></div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<input readonly value="${(project.bidsTime?string("yyyy-MM-dd"))!}"/>
</div>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 120px ;margin-bottom: 12px;" value="是否二次合作"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.isSecond??> <#if project.isSecond??>
<#if (project.isSecond!) =1> <#if (project.isSecond!) =1>
<input readonly value="是"/> <input readonly value="是"/>
@ -462,15 +332,9 @@
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> <th class="table-title" colspan="1" >直签:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="3" >
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px ;margin-bottom: 12px;" value="直签"/></div>
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if project.signType??> <#if project.signType??>
<#if (project.signType!) =1> <#if (project.signType!) =1>
<input readonly value="紫光汇智直接投标"/> <input readonly value="紫光汇智直接投标"/>
@ -480,34 +344,29 @@
<#else> <#else>
<input readonly value=""/> <input readonly value=""/>
</#if> </#if>
</span> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >主合同收款条款:</th>
<td class="table-title" colspan="5" >
<div class="am-g am-form-group am-margin-top"> <textarea rows="3" cols="20" style="border-style:none;"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 140px;" value="主合同收款条款"/></div> >${project.mainContractCollectionTerms!}</textarea>
<div class="am-u-sm-6 am-u-md-6"> </td>
<input readonly value="${project.mainContractCollectionTerms!}"/> </tr>
</div> <tr class="am-text-nowrap">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" >主合同具体解决方案:</th>
</div> <td class="table-title" colspan="5" >
<textarea rows="3" cols="20" style="border-style:none;"
<div class="am-g am-form-group am-margin-top"> >${project.mainContractResolvePlan!}</textarea>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 160px;" value="主合同具体解决方案"/></div> </td> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<input readonly value="${project.mainContractResolvePlan!}"/> <th class="table-title" colspan="1" >计收计划:</th>
</div> <td class="table-title" colspan="5" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <textarea rows="3" cols="20" style="border-style:none;"
</div> >${project.calculationCollection!}</textarea>
</td>
<div class="am-g am-form-group am-margin-top"> </tr>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><input readonly style="text-align: right;width: 80px;" value="计收计划"/></div> </table>
<div class="am-u-sm-6 am-u-md-6">
<input readonly value="${project.calculationCollection!}"/>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
</div> </div>
</div> </div>
<#-- <div class="am-tabs-bd">--> <#-- <div class="am-tabs-bd">-->

View File

@ -17,9 +17,9 @@
select[readonly] option { select[readonly] option {
display: none; display: none;
} }
input[readonly]{ /*input[readonly]{*/
background-color: #eee; /* background-color: #eee;*/
} /*}*/
.am-btn-danger { .am-btn-danger {
color: #f00; color: #f00;
@ -160,7 +160,32 @@
} }
/* 固定表头的table样式 end */ /* 固定表头的table样式 end */
.table-title{
text-align: left;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="text"]{
-moz-appearance: textfield;
}
.am-table-striped>tbody>tr:nth-child(odd)>input[type="text"]{
background-color: #f9f9f9;
}
input[type="text"]:focus{
outline: none;
}
.table-inline {
/*width: 600px;*/
width: 100%;
border:0 none;
outline:none;
}
.sameline {
display: flex;
/*position: relative;*/
}
</style> </style>
<div class="project_budget"> <div class="project_budget">
@ -186,418 +211,318 @@
<input name="id" id="id" type="hidden" value="${project.id}" /> <input name="id" id="id" type="hidden" value="${project.id}" />
<input name="projectContributionProfitRateThreshold" id="projectContributionProfitRateThreshold" type="hidden" value="${Utils.format(project.projectContributionProfitRateThreshold)}" /> <input name="projectContributionProfitRateThreshold" id="projectContributionProfitRateThreshold" type="hidden" value="${Utils.format(project.projectContributionProfitRateThreshold)}" />
<!--验证表单元素validate) begin--> <!--验证表单元素validate) begin-->
<table id="myTable" class="am-table am-table-bordered">
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>部门名称</div> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)基本信息</th>
<div class="am-u-sm-6 am-u-md-6"> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
<span>${project.deptName!}</span> </tr>
</div> <tr class="am-text-nowrap">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>部门名称:</th>
</div> <td class="table-title" colspan="2" ><input style="border-style:none;" readonly value="${project.deptName!}" /></td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目编号:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="2" ><input style="border-style:none;" readonly value="${project.projectNo!}" /></td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目编号</div> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<input type="text" id="projectNo" class="am-input" data-validate-async data-validation-message="请输入项目编号50字符以内" <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目名称:</th>
name="projectNo" placeholder="请输入项目编号50字符以内" maxlength="50" <td class="table-title" colspan="5" >
value="${project.projectNo!}" readonly /> <input type="text" id="name" style="border-style:none;" data-validate-async data-validation-message="请输入项目名称1000字符以内"
</div> name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" value="${project.name!}" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> </tr>
<tr class="am-text-nowrap">
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目类型:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目名称</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-6 am-u-md-6"> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="type" name="type" >
<input type="text" class="am-input" data-validate-async data-validation-message="请输入项目名称1000字符以内" <option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" id="name" <option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
value="${project.name!}" /> </select>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划开始时间:</th>
</div> <td class="table-title" colspan="1" >
<#-- <i class="am-icon-calendar"></i>-->
<div class="am-g am-form-group am-margin-top"> <input type="text" style="border-style:none;" id="startDate"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目类型</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected id="type" name="type">
<option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
<option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
<#-- <option value="3" <#if project.type=3>selected</#if>>战略合作类</option>-->
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划开始时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="startDate"
name="startDate" autocomplete="off" name="startDate" autocomplete="off"
value="${(project.startDate?string("yyyy-MM-dd"))!}" placeholder="项目计划开始时间" value="${(project.startDate?string("yyyy-MM-dd"))!}" placeholder="项目计划开始时间"
data-am-datepicker> data-am-datepicker >
</div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划结束时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <#-- <i class="am-icon-calendar"></i>-->
<div class="am-g am-form-group am-margin-top"> <input type="text" style="border-style:none;" id="endDate"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划结束时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="endDate"
name="endDate" autocomplete="off" name="endDate" autocomplete="off"
value="${(project.endDate?string("yyyy-MM-dd"))!}" placeholder="项目计划结束时间" value="${(project.endDate?string("yyyy-MM-dd"))!}" placeholder="项目计划结束时间"
data-am-datepicker> data-am-datepicker >
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>垫资模式:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()">
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option>
<option value="2" <#if project.underwrittenMode=2>selected</#if>>B类-不垫资(背靠背)</option>
<option value="3" <#if project.underwrittenMode=3>selected</#if>>C类-垫资(账期覆盖)</option>
<option value="4" <#if project.underwrittenMode=4>selected</#if>>D类-垫资(账期不覆盖)</option>
</select>
</td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>合作对象:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资模式</div> <td class="table-title" colspan="3" >
<div class="am-u-sm-6 am-u-md-6"> <div class="sameline">
<select data-am-selected id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()"> <input type="text" style="border-style:none;width: 50%;" data-validate-async data-validation-message="请输入合作对象"
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option> name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20"
<option value="2" <#if project.underwrittenMode=2>selected</#if>>B类-不垫资(背靠背)</option> value="${project.collaborator!}" />
<option value="3" <#if project.underwrittenMode=3>selected</#if>>C类-垫资(账期覆盖)</option> <span class="am-form-file am-text-xs spanline">
<option value="4" <#if project.underwrittenMode=4>selected</#if>>D类-垫资(账期不覆盖)</option> <button type="button" class="am-btn am-btn-primary am-btn-sm" style="border: none">
</select> <i class="am-icon-cloud-upload"></i> 上传附件
</div> </button>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input id="file_upload_icon" type="file" name="files[]" >
</div> <span style="display:none;" id="collaboratorUrl_span">${project.collaboratorUrl!}</span>
<span id="collaboratorUrl_check"><#if project.collaboratorUrl??>已上传</#if></span>
<div class="am-g am-form-group am-margin-top" id="coop" <#if project.underwrittenMode! != 1>hidden</#if>> <input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value="${project.collaboratorUrl!}"/>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合作对象</div> </span>
<div class="am-u-sm-6 am-u-md-6"> <!-- The global progress bar -->
<input type="text" class="am-input" data-validate-async data-validation-message="请输入合作对象" <#-- <span id="progress-area-icon" class="am-margin-top-sm am-hide">-->
name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20" <#-- <div id="progress-text-icon" class="am-text-xs am-text-right"></div>-->
value="${project.collaborator!}" /> <#-- <div id="progress" class="am-progress am-progress-xs">-->
</div> <#-- <div class="am-progress-bar" style="width: 0%"></div>-->
<#-- </div>-->
<div class="am-form-file am-text-xs"> <#-- </span>-->
<button type="button" class="am-btn am-btn-primary am-btn-sm"> </div>
<i class="am-icon-cloud-upload"></i> 上传附件 </td>
</button>
<input id="file_upload_icon" type="file" name="files[]" >
<span id="collaboratorUrl_span">${project.collaboratorUrl!}</span>
<input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value="${project.collaboratorUrl!}"/>
</div>
<!-- The global progress bar -->
<div id="progress-area-icon" class="am-margin-top-sm am-hide">
<div id="progress-text-icon" class="am-text-xs am-text-right"></div>
<div id="progress" class="am-progress am-progress-xs">
<div class="am-progress-bar" style="width: 0%"></div>
</div>
</div>
</div>
<div class="am-g am-form-group am-margin-top" id="noUnder1" <#if project.underwrittenMode! <= 2>hidden</#if>>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资利息</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input number" data-validate-async data-validation-message="请输入垫资利息"
name="advanceInterestAmount" placeholder="单位(元)" maxlength="16" id="advanceInterestAmount"
value="${Utils.format(project.advanceInterestAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top" id="noUnder2" <#if project.underwrittenMode! <= 2>hidden</#if>>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资峰值</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input number" data-validate-async data-validation-message="请输入垫资峰值"
name="advancePeakAmount" placeholder="单位(元)" maxlength="16" id="advancePeakAmount"
value="${Utils.format(project.advancePeakAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合同金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入合同金额"
name="contractAmount" placeholder="单位(元)" maxlength="20" id="contractAmount"
value="${Utils.format(project.contractAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利"
name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16"
value="${Utils.format(project.grossProfit)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利率</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利率"
name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16"
value="${Utils.format(project.grossProfitMargin)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>汇智产品金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validation-message="请输入汇智产品金额"
name="huizhiProductAmount" placeholder="单位(元)" maxlength="20" id="huizhiProductAmount"
value="${Utils.format(project.huizhiProductAmount, "0.00")}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华智产品金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validation-message="华智产品金额"
name="huazhiProductAmount" placeholder="单位(元)" maxlength="20" id="huazhiProductAmount"
value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资利息:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华三产品金额</div> <td class="table-title" colspan="1" hidden>
<div class="am-u-sm-6 am-u-md-6"> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资利息"
<input type="text" class="number am-input" data-validation-message="华三产品金额" name="advanceInterestAmount" id="advanceInterestAmount" placeholder="单位(元)" maxlength="16"
name="huasanProductAmount" placeholder="单位(元)" maxlength="20" id="huasanProductAmount" value="${Utils.format(project.advanceInterestAmount)}" />
value="${Utils.format(project.huasanProductAmount, "0.00")}" /> </td>
</div> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资峰值:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" hidden>
</div> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资峰值"
name="advancePeakAmount" id="advancePeakAmount" placeholder="单位(元)" maxlength="16"
<div class="am-g am-form-group am-margin-top"> value="${Utils.format(project.advancePeakAmount)}" />
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>其他产品金额</div> </td>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validation-message="请输入其他产品金额"
name="ziguangOtherAmount" placeholder="单位(元)" maxlength="20" id="ziguangOtherAmount"
value="${Utils.format(project.ziguangOtherAmount, "0.00")}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目把握度</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected id="certainty" name="certainty">
<#if project.certainty??>
<option value="1" <#if project.certainty=1>selected</#if>>A项目成功率80%-100%</option>
<option value="2" <#if project.certainty=2>selected</#if>>B项目成功率60%-80%</option>
<option value="3" <#if project.certainty=3>selected</#if>>C项目成功率40%-60%</option>
<#else>
<option value="1" >A项目成功率40%-60%</option>
<option value="2" >B项目成功率40%-60%</option>
<option value="3" >C项目成功率40%-60%</option>
</#if>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>行业场景应用</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 200,searchBox: 1}" id="industryScene" name="industryScene">
<#if project.industryScene??>
<option value="1" <#if project.industryScene=1>selected</#if>>信息安全</option>
<option value="2" <#if project.industryScene=2>selected</#if>>政府</option>
<option value="3" <#if project.industryScene=3>selected</#if>>公安</option>
<option value="4" <#if project.industryScene=4>selected</#if>>企业</option>
<option value="5" <#if project.industryScene=5>selected</#if>>教育</option>
<option value="6" <#if project.industryScene=6>selected</#if>>交通</option>
<option value="7" <#if project.industryScene=7>selected</#if>>医疗</option>
<option value="8" <#if project.industryScene=8>selected</#if>>电力资源</option>
<option value="9" <#if project.industryScene=9>selected</#if>>运营商</option>
<option value="10" <#if project.industryScene=10>selected</#if>>金融</option>
<option value="11" <#if project.industryScene=11>selected</#if>>专网</option>
<option value="12" <#if project.industryScene=12>selected</#if>>其他</option>
<option value="13" <#if project.industryScene=13>selected</#if>>互联网</option>
<option value="14" <#if project.industryScene=14>selected</#if>>银行</option>
<#else>
<option value="1" >信息安全</option>
<option value="2" >政府</option>
<option value="3" >公安</option>
<option value="4" >企业</option>
<option value="5" >教育</option>
<option value="6" >交通</option>
<option value="7" >医疗</option>
<option value="8" >电力资源</option>
<option value="9" >运营商</option>
<option value="10" >金融</option>
<option value="11" >专网</option>
<option value="12" >其他</option>
<option value="13" >互联网</option>
<option value="14" >银行</option>
</#if>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目解决方案</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected id="resolvePlan" name="resolvePlan">
<#if project.resolvePlan??>
<option value="1" <#if project.resolvePlan=1>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" <#if project.resolvePlan=2>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" <#if project.resolvePlan=3>selected</#if>>其他生态</option>
<#else>
<option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" >其他生态</option>
</#if>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>客户名称</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input" data-validate-async data-validation-message="请输入客户名称1000字符以内"
name="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000" id="customer"
value="${project.customer!}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>最终用户名称</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input" data-validate-async data-validation-message="请输入最终用户名称1000字符以内"
name="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000" id="terminalCustomer"
value="${project.terminalCustomer!}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>价值及风险</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入价值及风险"
placeholder="请输入价值及风险"
>${project.valueRisk!}</textarea>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>合同金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入合同金额"
name="contractAmount" id="contractAmount" placeholder="单位(元)" maxlength="16"
value="${Utils.format(project.contractAmount)}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利"
name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16"
value="${Utils.format(project.grossProfit)}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利率:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利率"
name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16"
value="${Utils.format(project.grossProfitMargin)}" />
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>汇智产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="汇智产品金额"
name="huizhiProductAmount" id="huizhiProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huizhiProductAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>华智产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="华智产品金额"
name="huazhiProductAmount" id="huazhiProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>华三产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="华三产品金额"
name="huasanProductAmount" id="huasanProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huasanProductAmount, "0.00")}" />
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>其他产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="请输入其他产品金额"
name="ziguangOtherAmount" id="ziguangOtherAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.ziguangOtherAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目把握度:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="certainty" name="certainty">
<#if project.certainty??>
<option value="1" <#if project.certainty=1>selected</#if>>A项目成功率80%-100%</option>
<option value="2" <#if project.certainty=2>selected</#if>>B项目成功率60%-80%</option>
<option value="3" <#if project.certainty=3>selected</#if>>C项目成功率40%-60%</option>
<#else>
<option value="1" >A项目成功率40%-60%</option>
<option value="2" >B项目成功率40%-60%</option>
<option value="3" >C项目成功率40%-60%</option>
</#if>
</select>
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>行业场景应用:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="industryScene" name="industryScene">
<#if project.industryScene??>
<option value="1" <#if project.industryScene=1>selected</#if>>信息安全</option>
<option value="2" <#if project.industryScene=2>selected</#if>>政府</option>
<option value="3" <#if project.industryScene=3>selected</#if>>公安</option>
<option value="4" <#if project.industryScene=4>selected</#if>>企业</option>
<option value="5" <#if project.industryScene=5>selected</#if>>教育</option>
<option value="6" <#if project.industryScene=6>selected</#if>>交通</option>
<option value="7" <#if project.industryScene=7>selected</#if>>医疗</option>
<option value="8" <#if project.industryScene=8>selected</#if>>电力资源</option>
<option value="9" <#if project.industryScene=9>selected</#if>>运营商</option>
<option value="10" <#if project.industryScene=10>selected</#if>>金融</option>
<option value="11" <#if project.industryScene=11>selected</#if>>专网</option>
<option value="12" <#if project.industryScene=12>selected</#if>>其他</option>
<option value="13" <#if project.industryScene=13>selected</#if>>互联网</option>
<option value="14" <#if project.industryScene=14>selected</#if>>银行</option>
<#else>
<option value="1" >信息安全</option>
<option value="2" >政府</option>
<option value="3" >公安</option>
<option value="4" >企业</option>
<option value="5" >教育</option>
<option value="6" >交通</option>
<option value="7" >医疗</option>
<option value="8" >电力资源</option>
<option value="9" >运营商</option>
<option value="10" >金融</option>
<option value="11" >专网</option>
<option value="12" >其他</option>
<option value="13" >互联网</option>
<option value="14" >银行</option>
</#if>
</select>
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目解决方案:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="resolvePlan" name="resolvePlan">
<#if project.resolvePlan??>
<option value="1" <#if project.resolvePlan=1>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" <#if project.resolvePlan=2>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" <#if project.resolvePlan=3>selected</#if>>其他生态</option>
<#else>
<option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" >其他生态</option>
</#if>
</select>
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>客户名称:</th>
<td class="table-title" colspan="1" >
<input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入客户名称1000字符以内"
name="customer" id="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000"
value="${project.customer!}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>最终用户名称:</th>
<td class="table-title" colspan="1" >
<input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入最终用户名称1000字符以内"
name="terminalCustomer" id="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000"
value="${project.terminalCustomer!}" />
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>价值及风险:</th>
<td class="table-title" colspan="5" >
<textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入价值及风险"
placeholder="请输入价值及风险"
>${project.valueRisk!}</textarea>
</td>
</tr>
</table>
</div> </div>
<!--验证表单元素validate end--> <!--验证表单元素validate end-->
<div class="am-tab-panel am-fade am-in" id="tab2"> <div class="am-tab-panel am-fade am-in" id="tab2">
<table id="myTable" class="am-table am-table-bordered">
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目负责人</div> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)其他信息</th>
<div class="am-u-sm-6 am-u-md-6"> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
<input type="text" id="principal" class="am-input" data-validate-async data-validation-message="请输入项目负责人" </tr>
name="principal" placeholder="请输入项目负责人" maxlength="20" <tr class="am-text-nowrap">
value="${project.principal!}" /> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目负责人:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input type="text" id="principal" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目负责人"
</div> name="principal" placeholder="请输入项目负责人" maxlength="20"
value="${project.principal!}" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right">预计合同签订时间</div> <th class="table-title" colspan="1" >预计合同签订时间:</th>
<div class="am-u-sm-2 am-u-md-2"> <td class="table-title" colspan="1" >
<div class="am-form-group am-form-icon"> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="contractTime"
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="contractTime"
name="contractTime" autocomplete="off" name="contractTime" autocomplete="off"
value="${(project.contractTime?string("yyyy-MM-dd"))!}" placeholder="预计合同签订时间" value="${(project.contractTime?string("yyyy-MM-dd"))!}" placeholder="预计合同签订时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> <th class="table-title" colspan="1" >项目计划招标时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="bidsTime"
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">项目计划招标时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="bidsTime"
name="bidsTime" autocomplete="off" name="bidsTime" autocomplete="off"
value="${(project.bidsTime?string("yyyy-MM-dd"))!}" placeholder="项目计划招标时间" value="${(project.bidsTime?string("yyyy-MM-dd"))!}" placeholder="项目计划招标时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >是否二次合作:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top"> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="isSecond" name="isSecond">
<div class="am-u-sm-4 am-u-md-2 am-text-right">是否二次合作</div> <#if project.isSecond??>
<div class="am-u-sm-6 am-u-md-6"> <option value="-1" ></option>
<select data-am-selected id="isSecond" name="isSecond"> <option value="1" <#if project.isSecond=1>selected</#if>>是</option>
<#if project.isSecond??> <option value="2" <#if project.isSecond=2>selected</#if>>否</option>
<option value="-1" ></option> <#else>
<option value="1" <#if project.isSecond=1>selected</#if>>是</option> <option value="-1" ></option>
<option value="2" <#if project.isSecond=2>selected</#if>>否</option> <option value="1" >是</option>
<#else> <option value="2" >否</option>
<option value="-1" ></option> </#if>
<option value="1" >是</option> </select>
<option value="2" >否</option> </td>
</#if> <th class="table-title" colspan="1" >直签:</th>
</select> <td class="table-title" colspan="3" >
</div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="signType" name="signType">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <#if project.signType??>
</div> <option value="-1" ></option>
<option value="1" <#if project.signType=1>selected</#if>>紫光汇智直接投标</option>
<div class="am-g am-form-group am-margin-top"> <#else>
<div class="am-u-sm-4 am-u-md-2 am-text-right">直签</div> <option value="-1" ></option>
<div class="am-u-sm-6 am-u-md-6"> <option value="1" >紫光汇智直接投标</option>
<select data-am-selected id="signType" name="signType"> </#if>
<#if project.signType??> </select>
<option value="-1" ></option> </td>
<option value="1" <#if project.signType=1>selected</#if>>紫光汇智直接投标</option> </tr>
<#else> <tr class="am-text-nowrap">
<option value="-1" ></option> <th class="table-title" colspan="1" >主合同收款条款:</th>
<option value="1" >紫光汇智直接投标</option> <td class="table-title" colspan="5" >
</#if>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同收款条款</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000" <textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入收款条款" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入收款条款"
placeholder="请输入收款条款" placeholder="请输入收款条款"
>${project.mainContractCollectionTerms!}</textarea> >${project.mainContractCollectionTerms!}</textarea>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" >主合同具体解决方案:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="5" >
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同具体解决方案</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000" <textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入具体解决方案" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入具体解决方案"
placeholder="请输入具体解决方案" placeholder="请输入具体解决方案"
>${project.mainContractResolvePlan!}</textarea> >${project.mainContractResolvePlan!}</textarea>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" >计收计划:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="5" >
<div class="am-u-sm-4 am-u-md-2 am-text-right">计收计划</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000" <textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000"
class="am-input" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划" class="am-input" style="border-style:none;" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划"
placeholder="按照开票金额及时间罗列计收计划" placeholder="按照开票金额及时间罗列计收计划"
>${project.calculationCollection!}</textarea> >${project.calculationCollection!}</textarea>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> </table>
</div> </div>
<div class="am-tab-panel am-fade am-in" id="tab3"> <div class="am-tab-panel am-fade am-in" id="tab3">
<div class="fixed-section"> <div class="fixed-section">

View File

@ -1,6 +1,34 @@
<#assign base=request.contextPath /> <#assign base=request.contextPath />
<#import "../common/defaultLayout.ftl" as defaultLayout> <#import "../common/defaultLayout.ftl" as defaultLayout>
<@defaultLayout.layout> <@defaultLayout.layout>
<style type="text/css">
.table-title{
text-align: left;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="text"]{
-moz-appearance: textfield;
}
.am-table-striped>tbody>tr:nth-child(odd)>input[type="text"]{
background-color: #f9f9f9;
}
input[type="text"]:focus{
outline: none;
}
.table-inline {
/*width: 600px;*/
width: 100%;
border:0 none;
outline:none;
}
.sameline {
display: flex;
/*position: relative;*/
}
</style>
<div class="admin-content"> <div class="admin-content">
<div class="admin-content-body"> <div class="admin-content-body">
<div class="am-cf am-padding"> <div class="am-cf am-padding">
@ -19,371 +47,281 @@
<#--<input name="permissionID" id="permissionID" type="hidden" value="${permissionID!}" />--> <#--<input name="permissionID" id="permissionID" type="hidden" value="${permissionID!}" />-->
<!--验证表单元素validate) begin--> <!--验证表单元素validate) begin-->
<input name="id" id="id" type="hidden" value="${projectId}" /> <input name="id" id="id" type="hidden" value="${projectId}" />
<div class="am-g am-form-group am-margin-top"> <table id="myTable" class="am-table am-table-bordered">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>部门名称</div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)基本信息</th>
<span>${dept.name}</span> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>部门名称:</th>
<td class="table-title" colspan="2" ><input class="table-inline" readonly value="${dept.name!}"/></td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目编号:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目编号</div> <td class="table-title" colspan="2" ><input class="table-inline" readonly value="保存后默认提供"/></td>
<div class="am-u-sm-6 am-u-md-6"> </tr>
<span>保存后默认提供</span> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目名称:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="5" >
</div> <input type="text" id="name" style="border-style:none;" data-validate-async data-validation-message="请输入项目名称1000字符以内"
name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" value="" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目名称</div> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<input type="text" id="name" class="am-input" data-validate-async data-validation-message="请输入项目名称1000字符以内" <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目类型:</th>
name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" <td class="table-title" colspan="1" >
value="" /> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="type" name="type" >
</div> <option value="1" >工程集成类</option>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <option value="2" >设备集成类</option>
</div> </select>
</td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划开始时间:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目类型</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-6 am-u-md-6" style="font-size: small"> <#-- <i class="am-icon-calendar"></i>-->
<select data-am-selected id="type" name="type" > <input type="text" style="border-style:none;" id="startDate"
<option value="1" >工程集成类</option>
<option value="2" >设备集成类</option>
<#-- <option value="3" >战略合作类</option>-->
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划开始时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="startDate"
name="startDate" autocomplete="off" name="startDate" autocomplete="off"
value="" placeholder="项目计划开始时间" value="" placeholder="项目计划开始时间"
data-am-datepicker > data-am-datepicker >
</div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划结束时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <#-- <i class="am-icon-calendar"></i>-->
<div class="am-g am-form-group am-margin-top"> <input type="text" style="border-style:none;" id="endDate"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划结束时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="endDate"
name="endDate" autocomplete="off" name="endDate" autocomplete="off"
value="" placeholder="项目计划结束时间" value="" placeholder="项目计划结束时间"
data-am-datepicker > data-am-datepicker >
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>垫资模式:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()">
<option value="1" >A类-不垫资(战略合作)</option>
<option value="2" >B类-不垫资(背靠背)</option>
<option value="3" >C类-垫资(账期覆盖)</option>
<option value="4" >D类-垫资(账期不覆盖)</option>
</select>
</td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>合作对象:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资模式</div> <td class="table-title" colspan="3" >
<div class="am-u-sm-6 am-u-md-6"> <div class="sameline">
<select data-am-selected id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()"> <input type="text" style="border-style:none;width: 50%;" data-validate-async data-validation-message="请输入合作对象"
<option value="1" >A类-不垫资(战略合作)</option> name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20"
<option value="2" >B类-不垫资(背靠背)</option> value="" />
<option value="3" >C类-垫资(账期覆盖)</option> <span class="am-form-file am-text-xs spanline">
<option value="4" >D类-垫资(账期不覆盖)</option> <button type="button" class="am-btn am-btn-primary am-btn-sm" style="border: none">
</select> <i class="am-icon-cloud-upload"></i> 上传附件
</div> </button>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input id="file_upload_icon" type="file" name="files[]" >
</div> <span style="display:none;" id="collaboratorUrl_span"></span>
<span id="collaboratorUrl_check"></span>
<input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value=""/>
</span>
<!-- The global progress bar -->
<#-- <span id="progress-area-icon" class="am-margin-top-sm am-hide">-->
<#-- <div id="progress-text-icon" class="am-text-xs am-text-right"></div>-->
<#-- <div id="progress" class="am-progress am-progress-xs">-->
<#-- <div class="am-progress-bar" style="width: 0%"></div>-->
<#-- </div>-->
<#-- </span>-->
</div>
</td>
<div class="am-g am-form-group am-margin-top" id="coop">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合作对象</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input" data-validate-async data-validation-message="请输入合作对象"
name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20"
value="" />
</div>
<div class="am-form-file am-text-xs"> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资利息:</th>
<button type="button" class="am-btn am-btn-primary am-btn-sm"> <td class="table-title" colspan="1" hidden>
<i class="am-icon-cloud-upload"></i> 上传附件 <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资利息"
</button> name="advanceInterestAmount" id="advanceInterestAmount" placeholder="单位(元)" maxlength="16"
<input id="file_upload_icon" type="file" name="files[]" > value="" />
<span id="collaboratorUrl_span"></span> </td>
<input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value=""/> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资峰值:</th>
</div> <td class="table-title" colspan="1" hidden>
<!-- The global progress bar --> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资峰值"
<div id="progress-area-icon" class="am-margin-top-sm am-hide"> name="advancePeakAmount" id="advancePeakAmount" placeholder="单位(元)" maxlength="16"
<div id="progress-text-icon" class="am-text-xs am-text-right"></div> value="" />
<div id="progress" class="am-progress am-progress-xs"> </td>
<div class="am-progress-bar" style="width: 0%"></div>
</div>
</div>
</div>
<div class="am-g am-form-group am-margin-top" id="noUnder1" hidden> </tr>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资利息</div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>合同金额:</th>
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入垫资利息" <td class="table-title" colspan="1" >
name="advanceInterestAmount" id="advanceInterestAmount" placeholder="单位(元)" maxlength="16" <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入合同金额"
value="" /> name="contractAmount" id="contractAmount" placeholder="单位(元)" maxlength="16"
</div> value="" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利:</th>
<div class="am-g am-form-group am-margin-top" id="noUnder2" hidden> <td class="table-title" colspan="1" >
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资峰值</div> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利"
<div class="am-u-sm-6 am-u-md-6"> name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16"
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入垫资峰值" value="" />
name="advancePeakAmount" id="advancePeakAmount" placeholder="单位(元)" maxlength="16" </td>
value="" /> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利率:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利率"
</div> name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16"
value="" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合同金额</div> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入合同金额" <th class="table-title" colspan="1" ><span style="color: red;">*</span>汇智产品金额:</th>
name="contractAmount" id="contractAmount" placeholder="单位(元)" maxlength="16" <td class="table-title" colspan="1" >
value="" /> <input type="text" class="number am-input" style="border-style:none;" data-validation-message="汇智产品金额"
</div> name="huizhiProductAmount" id="huizhiProductAmount" placeholder="单位(元)" maxlength="16" value="" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>华智产品金额:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top"> <input type="text" class="number am-input" style="border-style:none;" data-validation-message="华智产品金额"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利</div> name="huazhiProductAmount" id="huazhiProductAmount" placeholder="单位(元)" maxlength="16" value="" />
<div class="am-u-sm-6 am-u-md-6"> </td>
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利" <th class="table-title" colspan="1" ><span style="color: red;">*</span>华三产品金额:</th>
name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16" <td class="table-title" colspan="1" >
value="" /> <input type="text" class="number am-input" style="border-style:none;" data-validation-message="华三产品金额"
</div> name="huasanProductAmount" id="huasanProductAmount" placeholder="单位(元)" maxlength="16" value="" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> </tr>
<tr class="am-text-nowrap">
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>其他产品金额:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利率</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-6 am-u-md-6"> <input type="text" class="number am-input" style="border-style:none;" data-validation-message="请输入其他产品金额"
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利率" name="ziguangOtherAmount" id="ziguangOtherAmount" placeholder="单位(元)" maxlength="16" value="" />
name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16" </td>
value="" /> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目把握度:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="certainty" name="certainty">
</div> <option value="1" >A项目成功率80%-100%</option>
<option value="2" >B项目成功率60%-80%</option>
<div class="am-g am-form-group am-margin-top"> <option value="3" >C项目成功率40%-60%</option>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>汇智产品金额</div> </select>
<div class="am-u-sm-6 am-u-md-6"> </td>
<input type="text" class="number am-input" data-validation-message="汇智产品金额" <th class="table-title" colspan="1" ><span style="color: red;">*</span>行业场景应用:</th>
name="huizhiProductAmount" id="huizhiProductAmount" placeholder="单位(元)" maxlength="16" value="" /> <td class="table-title" colspan="1" >
</div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="industryScene" name="industryScene">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <option value="1" >信息安全</option>
</div> <option value="2" >政府</option>
<option value="3" >公安</option>
<div class="am-g am-form-group am-margin-top"> <option value="4" >企业</option>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华智产品金额</div> <option value="5" >教育</option>
<div class="am-u-sm-6 am-u-md-6"> <option value="6" >交通</option>
<input type="text" class="number am-input" data-validation-message="华智产品金额" <option value="7" >医疗</option>
name="huazhiProductAmount" id="huazhiProductAmount" placeholder="单位(元)" maxlength="16" value="" /> <option value="8" >电力资源</option>
</div> <option value="9" >运营商</option>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <option value="10" >金融</option>
</div> <option value="11" >专网</option>
<option value="12" >其他</option>
<div class="am-g am-form-group am-margin-top"> <option value="13" >互联网</option>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华三产品金额</div> <option value="14" >银行</option>
<div class="am-u-sm-6 am-u-md-6"> </select>
<input type="text" class="number am-input" data-validation-message="华三产品金额" </td>
name="huasanProductAmount" id="huasanProductAmount" placeholder="单位(元)" maxlength="16" value="" /> </tr>
</div> <tr class="am-text-nowrap">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目解决方案:</th>
</div> <td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="resolvePlan" name="resolvePlan">
<div class="am-g am-form-group am-margin-top"> <option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>其他产品金额</div> <option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<div class="am-u-sm-6 am-u-md-6"> <option value="3" >其他生态</option>
<input type="text" class="number am-input" data-validation-message="请输入其他产品金额" </select>
name="ziguangOtherAmount" id="ziguangOtherAmount" placeholder="单位(元)" maxlength="16" value="" /> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>客户名称:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入客户名称1000字符以内"
name="customer" id="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000"
<div class="am-g am-form-group am-margin-top"> value="" />
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目把握度</div> </td>
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>最终用户名称:</th>
<select data-am-selected id="certainty" name="certainty"> <td class="table-title" colspan="1" >
<option value="1" >A项目成功率80%-100%</option> <input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入最终用户名称1000字符以内"
<option value="2" >B项目成功率60%-80%</option> name="terminalCustomer" id="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000"
<option value="3" >C项目成功率40%-60%</option> value="" />
</select> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>价值及风险:</th>
<td class="table-title" colspan="5" >
<div class="am-g am-form-group am-margin-top"> <textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>行业场景应用</div> class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入价值及风险"
<div class="am-u-sm-6 am-u-md-6"> placeholder="请输入价值及风险"
<select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 200,searchBox: 1}" id="industryScene" name="industryScene"> ></textarea>
<option value="1" >信息安全</option> </td>
<option value="2" >政府</option> </tr>
<option value="3" >公安</option> </table>
<option value="4" >企业</option>
<option value="5" >教育</option>
<option value="6" >交通</option>
<option value="7" >医疗</option>
<option value="8" >电力资源</option>
<option value="9" >运营商</option>
<option value="10" >金融</option>
<option value="11" >专网</option>
<option value="12" >其他</option>
<option value="13" >互联网</option>
<option value="14" >银行</option>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目解决方案</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected id="resolvePlan" name="resolvePlan">
<option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" >其他生态</option>
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>客户名称</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input" data-validate-async data-validation-message="请输入客户名称1000字符以内"
name="customer" id="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000"
value="" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>最终用户名称</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input" data-validate-async data-validation-message="请输入最终用户名称1000字符以内"
name="terminalCustomer" id="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000"
value="" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>价值及风险</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入价值及风险"
placeholder="请输入价值及风险"
></textarea>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
</div> </div>
<!--验证表单元素validate end--> <!--验证表单元素validate end-->
</div> </div>
<div class="am-tabs-bd"> <div class="am-tabs-bd">
<div class="am-tab-panel am-fade am-in" id="tab2"> <div class="am-tab-panel am-fade am-in" id="tab2">
<table id="myTable" class="am-table am-table-bordered">
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目负责人</div> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)其他信息</th>
<div class="am-u-sm-6 am-u-md-6"> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
<input type="text" id="principal" class="am-input" data-validate-async data-validation-message="请输入项目负责人" </tr>
name="principal" placeholder="请输入项目负责人" maxlength="20" <tr class="am-text-nowrap">
value="" /> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目负责人:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input type="text" id="principal" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目负责人"
</div> name="principal" placeholder="请输入项目负责人" maxlength="20"
value="" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right">预计合同签订时间</div> <th class="table-title" colspan="1" >预计合同签订时间:</th>
<div class="am-u-sm-2 am-u-md-2"> <td class="table-title" colspan="1" >
<div class="am-form-group am-form-icon"> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="contractTime"
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="contractTime"
name="contractTime" autocomplete="off" name="contractTime" autocomplete="off"
value="" placeholder="预计合同签订时间" value="" placeholder="预计合同签订时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> <th class="table-title" colspan="1" >项目计划招标时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="bidsTime"
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">项目计划招标时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="bidsTime"
name="bidsTime" autocomplete="off" name="bidsTime" autocomplete="off"
value="" placeholder="项目计划招标时间" value="" placeholder="项目计划招标时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >是否二次合作:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top"> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="isSecond" name="isSecond">
<div class="am-u-sm-4 am-u-md-2 am-text-right">是否二次合作</div> <option value="-1" ></option>
<div class="am-u-sm-6 am-u-md-6"> <option value="1" >是</option>
<select data-am-selected id="isSecond" name="isSecond"> <option value="2" >否</option>
<option value="-1" ></option> </select>
<option value="1" >是</option> </td>
<option value="2" >否</option> <th class="table-title" colspan="1" >直签:</th>
</select> <td class="table-title" colspan="3" >
</div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="signType" name="signType">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <option value="-1" ></option>
</div> <option value="1" >紫光汇智直接投标</option>
</select>
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right">直签</div> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<select data-am-selected id="signType" name="signType"> <th class="table-title" colspan="1" >主合同收款条款:</th>
<option value="-1" ></option> <td class="table-title" colspan="5" >
<option value="1" >是</option> <textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000"
<option value="2" >否</option> class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入收款条款"
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同收款条款</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入收款条款"
placeholder="请输入收款条款" placeholder="请输入收款条款"
></textarea> ></textarea>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" >主合同具体解决方案:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="5" >
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同具体解决方案</div> <textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000"
<div class="am-u-sm-6 am-u-md-6"> class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入具体解决方案"
<textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000" placeholder="请输入具体解决方案"
class="am-input" data-validate-async data-validation-message="请输入具体解决方案" ></textarea>
placeholder="请输入具体解决方案" </td>
></textarea> </tr>
</div> <tr class="am-text-nowrap">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" >计收计划:</th>
</div> <td class="table-title" colspan="5" >
<textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000"
<div class="am-g am-form-group am-margin-top"> class="am-input" style="border-style:none;" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划"
<div class="am-u-sm-4 am-u-md-2 am-text-right">计收计划</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000"
class="am-input" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划"
placeholder="按照开票金额及时间罗列计收计划" placeholder="按照开票金额及时间罗列计收计划"
></textarea> ></textarea>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> </table>
<#-- <div class="am-tabs-bd">--> <#-- <div class="am-tabs-bd">-->
<#-- <div class="am-tab-panel am-fade am-in" id="tab2">--> <#-- <div class="am-tab-panel am-fade am-in" id="tab2">-->
<#-- <span class="am-text-lg">收入</span>--> <#-- <span class="am-text-lg">收入</span>-->
@ -1055,6 +993,7 @@
//设置服务器返回的url //设置服务器返回的url
$("#collaboratorUrl").val(data.result.data.url); $("#collaboratorUrl").val(data.result.data.url);
$("#collaboratorUrl_span").text(data.result.data.url); $("#collaboratorUrl_span").text(data.result.data.url);
$("#collaboratorUrl_check").text("已上传");
// console.log("collboratorUrl: " + $("#collaboratorUrl").val()); // console.log("collboratorUrl: " + $("#collaboratorUrl").val());
setTimeout(function () { setTimeout(function () {
progressArea.addClass("am-hide"); progressArea.addClass("am-hide");

View File

@ -7,7 +7,32 @@
.select-hide .am-selected-content{ .select-hide .am-selected-content{
display: none; display: none;
} }
.table-title{
text-align: left;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="text"]{
-moz-appearance: textfield;
}
.am-table-striped>tbody>tr:nth-child(odd)>input[type="text"]{
background-color: #f9f9f9;
}
input[type="text"]:focus{
outline: none;
}
.table-inline {
/*width: 600px;*/
width: 100%;
border:0 none;
outline:none;
}
.sameline {
display: flex;
/*position: relative;*/
}
</style> </style>
<div class="admin-content"> <div class="admin-content">
<div class="admin-content-body"> <div class="admin-content-body">
@ -26,206 +51,146 @@
<div class="am-tab-panel am-fade am-in am-active" id="tab1"> <div class="am-tab-panel am-fade am-in am-active" id="tab1">
<input name="id" id="id" type="hidden" value="${project.id}" /> <input name="id" id="id" type="hidden" value="${project.id}" />
<!--验证表单元素validate) begin--> <!--验证表单元素validate) begin-->
<table id="myTable" class="am-table am-table-bordered">
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>部门名称</div> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)基本信息</th>
<div class="am-u-sm-6 am-u-md-6"> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
<span>${project.deptName!}</span> </tr>
</div> <tr class="am-text-nowrap">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>部门名称:</th>
</div> <td class="table-title" colspan="2" ><input class="table-inline" readonly value="${project.deptName!}" /></td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目编号:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="2" ><input class="table-inline" readonly value="${project.projectNo!}" /></td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目编号</div> </tr>
<div class="am-u-sm-6 am-u-md-6"> <tr class="am-text-nowrap">
<input type="text" id="projectNo" class="am-input" data-validate-async data-validation-message="请输入项目编号50字符以内" <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目名称:</th>
name="projectNo" placeholder="请输入项目编号50字符以内" maxlength="50" <td class="table-title" colspan="5" >
value="${project.projectNo!}" readonly /> <input type="text" id="name" style="border-style:none;" data-validate-async data-validation-message="请输入项目名称1000字符以内"
</div> name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" value="${project.name!}" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> </tr>
<tr class="am-text-nowrap">
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目类型:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目名称</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-6 am-u-md-6"> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="type" name="type" >
<input type="text" class="am-input" data-validate-async data-validation-message="请输入项目名称1000字符以内" <option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
name="name" placeholder="请输入项目名称1000字符以内" maxlength="1000" id="name" <option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
value="${project.name!}" /> </select>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划开始时间:</th>
</div> <td class="table-title" colspan="1" >
<#-- <i class="am-icon-calendar"></i>-->
<div class="am-g am-form-group am-margin-top"> <input type="text" style="border-style:none;" id="startDate"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目类型</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected id="type" name="type">
<option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
<option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
<#-- <option value="3" <#if project.type=3>selected</#if>>战略合作类</option>-->
</select>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划开始时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="startDate"
name="startDate" autocomplete="off" name="startDate" autocomplete="off"
value="${(project.startDate?string("yyyy-MM-dd"))!}" placeholder="项目计划开始时间" value="${(project.startDate?string("yyyy-MM-dd"))!}" placeholder="项目计划开始时间"
data-am-datepicker> data-am-datepicker >
</div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目计划结束时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <#-- <i class="am-icon-calendar"></i>-->
<div class="am-g am-form-group am-margin-top"> <input type="text" style="border-style:none;" id="endDate"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目计划结束时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="endDate"
name="endDate" autocomplete="off" name="endDate" autocomplete="off"
value="${(project.endDate?string("yyyy-MM-dd"))!}" placeholder="项目计划结束时间" value="${(project.endDate?string("yyyy-MM-dd"))!}" placeholder="项目计划结束时间"
data-am-datepicker> data-am-datepicker >
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>垫资模式:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()">
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option>
<option value="2" <#if project.underwrittenMode=2>selected</#if>>B类-不垫资(背靠背)</option>
<option value="3" <#if project.underwrittenMode=3>selected</#if>>C类-垫资(账期覆盖)</option>
<option value="4" <#if project.underwrittenMode=4>selected</#if>>D类-垫资(账期不覆盖)</option>
</select>
</td>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>合作对象:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资模式</div> <td class="table-title" colspan="3" >
<div class="am-u-sm-6 am-u-md-6"> <div class="sameline">
<select data-am-selected id="underwrittenMode" name="underwrittenMode" onchange="changeCheck()"> <input type="text" style="border-style:none;width: 50%;" data-validate-async data-validation-message="请输入合作对象"
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option> name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20"
<option value="2" <#if project.underwrittenMode=2>selected</#if>>B类-不垫资(背靠背)</option> value="${project.collaborator!}" />
<option value="3" <#if project.underwrittenMode=3>selected</#if>>C类-垫资(账期覆盖)</option> <span class="am-form-file am-text-xs spanline">
<option value="4" <#if project.underwrittenMode=4>selected</#if>>D类-垫资(账期不覆盖)</option> <button type="button" class="am-btn am-btn-primary am-btn-sm" style="border: none">
</select> <i class="am-icon-cloud-upload"></i> 上传附件
</div> </button>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input id="file_upload_icon" type="file" name="files[]" >
</div> <span style="display:none;" id="collaboratorUrl_span">${project.collaboratorUrl!}</span>
<span id="collaboratorUrl_check"><#if project.collaboratorUrl??>已上传</#if></span>
<div class="am-g am-form-group am-margin-top" id="coop" <#if project.underwrittenMode! != 1>hidden</#if>> <input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value="${project.collaboratorUrl!}"/>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合作对象</div> </span>
<div class="am-u-sm-6 am-u-md-6"> <!-- The global progress bar -->
<input type="text" class="am-input" data-validate-async data-validation-message="请输入合作对象" <#-- <span id="progress-area-icon" class="am-margin-top-sm am-hide">-->
name="collaborator" id="collaborator" placeholder="请输入合作对象" maxlength="20" <#-- <div id="progress-text-icon" class="am-text-xs am-text-right"></div>-->
value="${project.collaborator!}" /> <#-- <div id="progress" class="am-progress am-progress-xs">-->
</div> <#-- <div class="am-progress-bar" style="width: 0%"></div>-->
<#-- </div>-->
<div class="am-form-file am-text-xs"> <#-- </span>-->
<button type="button" class="am-btn am-btn-primary am-btn-sm"> </div>
<i class="am-icon-cloud-upload"></i> 上传附件 </td>
</button>
<input id="file_upload_icon" type="file" name="files[]" >
<span id="collaboratorUrl_span">${project.collaboratorUrl!}</span>
<input id="collaboratorUrl" name="collaboratorUrl" type="hidden" value="${project.collaboratorUrl!}"/>
</div>
<!-- The global progress bar -->
<div id="progress-area-icon" class="am-margin-top-sm am-hide">
<div id="progress-text-icon" class="am-text-xs am-text-right"></div>
<div id="progress" class="am-progress am-progress-xs">
<div class="am-progress-bar" style="width: 0%"></div>
</div>
</div>
</div>
<div class="am-g am-form-group am-margin-top" id="noUnder1" <#if project.underwrittenMode! <= 2>hidden</#if>>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资利息</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input number" data-validate-async data-validation-message="请输入垫资利息"
name="advanceInterestAmount" placeholder="单位(元)" maxlength="16" id="advanceInterestAmount"
value="${Utils.format(project.advanceInterestAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top" id="noUnder2" <#if project.underwrittenMode! <= 2>hidden</#if>>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>垫资峰值</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="am-input number" data-validate-async data-validation-message="请输入垫资峰值"
name="advancePeakAmount" placeholder="单位(元)" maxlength="16" id="advancePeakAmount"
value="${Utils.format(project.advancePeakAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>合同金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入合同金额"
name="contractAmount" placeholder="单位(元)" maxlength="20" id="contractAmount"
value="${Utils.format(project.contractAmount)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利"
name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16"
value="${Utils.format(project.grossProfit)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目毛利率</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validate-async data-validation-message="请输入项目毛利率"
name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16"
value="${Utils.format(project.grossProfitMargin)}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>汇智产品金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validation-message="请输入汇智产品金额"
name="huizhiProductAmount" placeholder="单位(元)" maxlength="20" id="huizhiProductAmount"
value="${Utils.format(project.huizhiProductAmount, "0.00")}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华智产品金额</div>
<div class="am-u-sm-6 am-u-md-6">
<input type="text" class="number am-input" data-validation-message="华智产品金额"
name="huazhiProductAmount" placeholder="单位(元)" maxlength="20" id="huazhiProductAmount"
value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资利息:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>华三产品金额</div> <td class="table-title" colspan="1" hidden>
<div class="am-u-sm-6 am-u-md-6"> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资利息"
<input type="text" class="number am-input" data-validation-message="华三产品金额" name="advanceInterestAmount" id="advanceInterestAmount" placeholder="单位(元)" maxlength="16"
name="huasanProductAmount" placeholder="单位(元)" maxlength="20" id="huasanProductAmount" value="${Utils.format(project.advanceInterestAmount)}" />
value="${Utils.format(project.huasanProductAmount, "0.00")}" /> </td>
</div> <th class="table-title" colspan="1" hidden><span style="color: red;">*</span>垫资峰值:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" hidden>
</div> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资峰值"
name="advancePeakAmount" id="advancePeakAmount" placeholder="单位(元)" maxlength="16"
value="${Utils.format(project.advancePeakAmount)}" />
</td>
<div class="am-g am-form-group am-margin-top"> </tr>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>其他产品金额</div> <tr class="am-text-nowrap">
<div class="am-u-sm-6 am-u-md-6"> <th class="table-title" colspan="1" ><span style="color: red;">*</span>合同金额:</th>
<input type="text" class="number am-input" data-validation-message="请输入其他产品金额" <td class="table-title" colspan="1" >
name="ziguangOtherAmount" placeholder="单位(元)" maxlength="20" id="ziguangOtherAmount" <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入合同金额"
value="${Utils.format(project.ziguangOtherAmount, "0.00")}" /> name="contractAmount" id="contractAmount" placeholder="单位(元)" maxlength="16"
</div> value="${Utils.format(project.contractAmount)}" />
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </td>
</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top"> <input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利"
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目把握度</div> name="grossProfit" id="grossProfit" placeholder="单位(元)" maxlength="16"
<div class="am-u-sm-6 am-u-md-6"> value="${Utils.format(project.grossProfit)}" />
<select data-am-selected id="certainty" name="certainty"> </td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目毛利率:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目毛利率"
name="grossProfitMargin" id="grossProfitMargin" placeholder="单位(%" maxlength="16"
value="${Utils.format(project.grossProfitMargin)}" />
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>汇智产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="汇智产品金额"
name="huizhiProductAmount" id="huizhiProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huizhiProductAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>华智产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="华智产品金额"
name="huazhiProductAmount" id="huazhiProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huazhiProductAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>华三产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="华三产品金额"
name="huasanProductAmount" id="huasanProductAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.huasanProductAmount, "0.00")}" />
</td>
</tr>
<tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>其他产品金额:</th>
<td class="table-title" colspan="1" >
<input type="text" class="number am-input" style="border-style:none;" data-validation-message="请输入其他产品金额"
name="ziguangOtherAmount" id="ziguangOtherAmount" placeholder="单位(元)" maxlength="16" value="${Utils.format(project.ziguangOtherAmount, "0.00")}" />
</td>
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目把握度:</th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="certainty" name="certainty">
<#if project.certainty??> <#if project.certainty??>
<option value="1" <#if project.certainty=1>selected</#if>>A项目成功率80%-100%</option> <option value="1" <#if project.certainty=1>selected</#if>>A项目成功率80%-100%</option>
<option value="2" <#if project.certainty=2>selected</#if>>B项目成功率60%-80%</option> <option value="2" <#if project.certainty=2>selected</#if>>B项目成功率60%-80%</option>
@ -235,15 +200,11 @@
<option value="2" >B项目成功率40%-60%</option> <option value="2" >B项目成功率40%-60%</option>
<option value="3" >C项目成功率40%-60%</option> <option value="3" >C项目成功率40%-60%</option>
</#if> </#if>
</select> </select>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>行业场景应用:</th>
</div> <td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="industryScene" name="industryScene">
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>行业场景应用</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 200,searchBox: 1}" id="industryScene" name="industryScene">
<#if project.industryScene??> <#if project.industryScene??>
<option value="1" <#if project.industryScene=1>selected</#if>>信息安全</option> <option value="1" <#if project.industryScene=1>selected</#if>>信息安全</option>
<option value="2" <#if project.industryScene=2>selected</#if>>政府</option> <option value="2" <#if project.industryScene=2>selected</#if>>政府</option>
@ -275,60 +236,47 @@
<option value="13" >互联网</option> <option value="13" >互联网</option>
<option value="14" >银行</option> <option value="14" >银行</option>
</#if> </#if>
</select> </select>
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>项目解决方案:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="1" >
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目解决方案</div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="resolvePlan" name="resolvePlan">
<div class="am-u-sm-6 am-u-md-6"> <#if project.resolvePlan??>
<select data-am-selected id="resolvePlan" name="resolvePlan"> <option value="1" <#if project.resolvePlan=1>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<#if project.resolvePlan??> <option value="2" <#if project.resolvePlan=2>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="1" <#if project.resolvePlan=1>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option> <option value="3" <#if project.resolvePlan=3>selected</#if>>其他生态</option>
<option value="2" <#if project.resolvePlan=2>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option> <#else>
<option value="3" <#if project.resolvePlan=3>selected</#if>>其他生态</option> <option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<#else> <option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="1" >公共服务(智慧交通、雪亮工程、治安防控体系等)</option> <option value="3" >其他生态</option>
<option value="2" >泛行业(智慧园区、智慧医疗、智慧工地等)</option> </#if>
<option value="3" >其他生态</option> </select>
</#if> </td>
</select> <th class="table-title" colspan="1" ><span style="color: red;">*</span>客户名称:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入客户名称1000字符以内"
</div> name="customer" id="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000"
value="${project.customer!}" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>客户名称</div> <th class="table-title" colspan="1" ><span style="color: red;">*</span>最终用户名称:</th>
<div class="am-u-sm-6 am-u-md-6"> <td class="table-title" colspan="1" >
<input type="text" class="am-input" data-validate-async data-validation-message="请输入客户名称1000字符以内" <input type="text" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入最终用户名称1000字符以内"
name="customer" placeholder="请输入客户名称1000字符以内" maxlength="1000" id="customer" name="terminalCustomer" id="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000"
value="${project.customer!}" /> value="${project.terminalCustomer!}" />
</div> </td>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </tr>
</div> <tr class="am-text-nowrap">
<th class="table-title" colspan="1" ><span style="color: red;">*</span>价值及风险:</th>
<div class="am-g am-form-group am-margin-top"> <td class="table-title" colspan="5" >
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>最终用户名称</div> <textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
<div class="am-u-sm-6 am-u-md-6"> class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入价值及风险"
<input type="text" class="am-input" data-validate-async data-validation-message="请输入最终用户名称1000字符以内" placeholder="请输入价值及风险"
name="terminalCustomer" placeholder="请输入最终用户名称1000字符以内" maxlength="1000" id="terminalCustomer" >${project.valueRisk!}</textarea>
value="${project.terminalCustomer!}" /> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> </table>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>价值及风险</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="5" cols="20" id="valueRisk" name="valueRisk" maxlength="1000"
class="am-input" data-validate-async data-validation-message="请输入价值及风险"
placeholder="请输入价值及风险"
>${project.valueRisk!}</textarea>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
</div> </div>
<!--验证表单元素validate end--> <!--验证表单元素validate end-->
@ -336,111 +284,89 @@
<div class="am-tabs-bd"> <div class="am-tabs-bd">
<div class="am-tab-panel am-fade am-in" id="tab2"> <div class="am-tab-panel am-fade am-in" id="tab2">
<table id="myTable" class="am-table am-table-bordered">
<div class="am-g am-form-group am-margin-top"> <tr class="am-text-nowrap">
<div class="am-u-sm-4 am-u-md-2 am-text-right"><span style="color: red;">*</span>项目负责人</div> <th class="table-title" colspan="6" style="text-align: center">项目立项(概算)其他信息</th>
<div class="am-u-sm-6 am-u-md-6"> <input type="hidden" style="border-style:none;" name="id" id="id" value="${id!}"/>
<input type="text" id="principal" class="am-input" data-validate-async data-validation-message="请输入项目负责人" </tr>
name="principal" placeholder="请输入项目负责人" maxlength="20" <tr class="am-text-nowrap">
value="${project.principal!}" /> <th class="table-title" colspan="1" ><span style="color: red;">*</span>项目负责人:</th>
</div> <td class="table-title" colspan="1" >
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <input type="text" id="principal" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入项目负责人"
</div> name="principal" placeholder="请输入项目负责人" maxlength="20"
value="${project.principal!}" />
<div class="am-g am-form-group am-margin-top"> </td>
<div class="am-u-sm-4 am-u-md-2 am-text-right">预计合同签订时间</div> <th class="table-title" colspan="1" >预计合同签订时间:</th>
<div class="am-u-sm-2 am-u-md-2"> <td class="table-title" colspan="1" >
<div class="am-form-group am-form-icon"> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="contractTime"
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="contractTime"
name="contractTime" autocomplete="off" name="contractTime" autocomplete="off"
value="${(project.contractTime?string("yyyy-MM-dd"))!}" placeholder="预计合同签订时间" value="${(project.contractTime?string("yyyy-MM-dd"))!}" placeholder="预计合同签订时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> <th class="table-title" colspan="1" >项目计划招标时间:</th>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <td class="table-title" colspan="1" >
</div> <input type="text" class="am-form-field am-input-sm" style="border-style:none;" id="bidsTime"
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">项目计划招标时间</div>
<div class="am-u-sm-2 am-u-md-2">
<div class="am-form-group am-form-icon">
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="bidsTime"
name="bidsTime" autocomplete="off" name="bidsTime" autocomplete="off"
value="${(project.bidsTime?string("yyyy-MM-dd"))!}" placeholder="项目计划招标时间" value="${(project.bidsTime?string("yyyy-MM-dd"))!}" placeholder="项目计划招标时间"
data-am-datepicker> data-am-datepicker>
</div> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >是否二次合作:</th>
<td class="table-title" colspan="1" >
<div class="am-g am-form-group am-margin-top"> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="isSecond" name="isSecond">
<div class="am-u-sm-4 am-u-md-2 am-text-right">是否二次合作</div> <#if project.isSecond??>
<div class="am-u-sm-6 am-u-md-6"> <option value="-1" ></option>
<select data-am-selected id="isSecond" name="isSecond"> <option value="1" <#if project.isSecond=1>selected</#if>>是</option>
<#if project.isSecond??> <option value="2" <#if project.isSecond=2>selected</#if>>否</option>
<option value="-1" ></option> <#else>
<option value="1" <#if project.isSecond=1>selected</#if>>是</option> <option value="-1" ></option>
<option value="2" <#if project.isSecond=2>selected</#if>>否</option> <option value="1" >是</option>
<#else> <option value="2" >否</option>
<option value="-1" ></option> </#if>
<option value="1" >是</option> </select>
<option value="2" >否</option> </td>
</#if> <th class="table-title" colspan="1" >直签:</th>
</select> <td class="table-title" colspan="3" >
</div> <select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="signType" name="signType">
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <#if project.signType??>
</div> <option value="-1" ></option>
<option value="1" <#if project.signType=1>selected</#if>>紫光汇智直接投标</option>
<div class="am-g am-form-group am-margin-top"> <#else>
<div class="am-u-sm-4 am-u-md-2 am-text-right">直签</div> <option value="-1" ></option>
<div class="am-u-sm-6 am-u-md-6"> <option value="1" >紫光汇智直接投标</option>
<select data-am-selected id="signType" name="signType"> </#if>
<#if project.signType??> </select>
<option value="-1" ></option> </td>
<option value="1" <#if project.signType=1>selected</#if>>紫光汇智直接投标</option> </tr>
<#else> <tr class="am-text-nowrap">
<option value="-1" ></option> <th class="table-title" colspan="1" >主合同收款条款:</th>
<option value="1" >紫光汇智直接投标</option> <td class="table-title" colspan="5" >
</#if> <textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000"
</select> class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入收款条款"
</div> placeholder="请输入收款条款"
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> >${project.mainContractCollectionTerms!}</textarea>
</div> </td>
</tr>
<tr class="am-text-nowrap">
<div class="am-g am-form-group am-margin-top"> <th class="table-title" colspan="1" >主合同具体解决方案:</th>
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同收款条款</div> <td class="table-title" colspan="5" >
<div class="am-u-sm-6 am-u-md-6"> <textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000"
<textarea rows="3" cols="20" id="mainContractCollectionTerms" name="mainContractCollectionTerms" maxlength="1000" class="am-input" style="border-style:none;" data-validate-async data-validation-message="请输入具体解决方案"
class="am-input" data-validate-async data-validation-message="请输入收款条款" placeholder="请输入具体解决方案"
placeholder="请输入收款条款" >${project.mainContractResolvePlan!}</textarea>
>${project.mainContractCollectionTerms!}</textarea> </td>
</div> </tr>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div> <tr class="am-text-nowrap">
</div> <th class="table-title" colspan="1" >计收计划:</th>
<td class="table-title" colspan="5" >
<div class="am-g am-form-group am-margin-top"> <textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000"
<div class="am-u-sm-4 am-u-md-2 am-text-right">主合同具体解决方案</div> class="am-input" style="border-style:none;" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划"
<div class="am-u-sm-6 am-u-md-6"> placeholder="按照开票金额及时间罗列计收计划"
<textarea rows="3" cols="20" id="mainContractResolvePlan" name="mainContractResolvePlan" maxlength="1000" >${project.calculationCollection!}</textarea>
class="am-input" data-validate-async data-validation-message="请输入具体解决方案" </td>
placeholder="请输入具体解决方案" </tr>
>${project.mainContractResolvePlan!}</textarea> </table>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top">
<div class="am-u-sm-4 am-u-md-2 am-text-right">计收计划</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea rows="3" cols="20" id="calculationCollection" name="calculationCollection" maxlength="1000"
class="am-input" data-validate-async data-validation-message="按照开票金额及时间罗列计收计划"
placeholder="按照开票金额及时间罗列计收计划"
>${project.calculationCollection!}</textarea>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
</div> </div>
</div> </div>
<#-- <div class="am-tabs-bd">--> <#-- <div class="am-tabs-bd">-->