项目基本信息可复制

master
hanbo 2022-04-27 17:55:03 +08:00
parent 14a6e4c112
commit 29b326b22d
1 changed files with 24 additions and 19 deletions

View File

@ -85,6 +85,11 @@
.approve-nopass:after {
content:"审核不通过";
}
input {
border:0 none;
outline:none;
}
</style>
<div class="admin-content">
@ -124,7 +129,7 @@
<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">
<span>${project.deptName}</span>
<input value="${project.deptName}"></input>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
@ -132,14 +137,14 @@
<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">
<span>${project.startDate?string("yyyy-MM-dd")}</span>
<input value="${project.startDate?string("yyyy-MM-dd")}"></input>
</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">
<span>${project.endDate?string("yyyy-MM-dd")}</span>
<input value="${project.endDate?string("yyyy-MM-dd")}"></input>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
@ -147,7 +152,7 @@
<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">
<span>${project.name}</span>
<input value="${project.name}"></input>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
@ -157,11 +162,11 @@
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if (project.type) =1>
工程集成类
<input value="工程集成类">
<#elseif (project.type) =2>
设备集成类
<input value="设备集成类">
<#elseif (project.type) =3>
战略合作类
<input value="战略合作类">
</#if>
</span>
</div>
@ -172,13 +177,13 @@
<div class="am-u-sm-6 am-u-md-6">
<span>
<#if (project.underwrittenMode) =1>
A类-不垫资(战略合作)
<input value="A类-不垫资(战略合作)">
<#elseif (project.underwrittenMode) =2>
B类-不垫资(背靠背)
<input value="B类-不垫资(背靠背)">
<#elseif (project.underwrittenMode) =3>
C类-垫资(账期覆盖)
<input value="C类-垫资(账期覆盖)">
<#elseif (project.underwrittenMode) =4>
D类-垫资(账期不覆盖)
<input value="D类-垫资(账期不覆盖)">
</#if>
</span>
</div>
@ -188,7 +193,7 @@
<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">
<span>${project.customer}</span>
<input value="${project.customer}"></input>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
@ -196,7 +201,7 @@
<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">
<span>${project.terminalCustomer}</span>
<input value="${project.terminalCustomer}"></input>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>
@ -217,42 +222,42 @@
<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">
<span>${Utils.format(project.contractAmount)}</span>元
<input value="${Utils.format(project.contractAmount)}元"></input>
</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">
<span>${project.industryScenario}</span>
<input value="${project.industryScenario}"></input>
</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">
<span>${Utils.format(project.huazhiProductAmount, '0.00')}</span>元
<input value="${Utils.format(project.huazhiProductAmount, '0.00')}元"></input>
</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">
<span>${Utils.format(project.ziguangOtherAmount, '0.00')}</span>元
<input value="${Utils.format(project.ziguangOtherAmount, '0.00')}元"></input>
</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">
<div style="width:600px; height:auto; word-wrap:break-word;">${project.mainContractCollectionTerms!}</div>
<div style="width:600px; height:auto; word-wrap:break-word;"><input value="${project.mainContractCollectionTerms!}"></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"><span style="color: red;">*</span>价值及风险</div>
<div class="am-u-sm-6 am-u-md-6">
<div style="width:600px; height:auto; word-wrap:break-word;">${project.valueRisk!}</div>
<div style="width:600px; height:auto; word-wrap:break-word;"><input value="${project.valueRisk!}"></div>
</div>
<div class="am-u-sm-2 am-u-md-4 input-msg"></div>
</div>