页面样式优化
parent
2a05302110
commit
f065b80381
|
@ -104,6 +104,8 @@
|
|||
</select>
|
||||
</td>
|
||||
|
||||
<th class="table-title" colspan="4" id="noUnder0" <#if project.underwrittenMode! gt 2>hidden</#if>></th>
|
||||
|
||||
<th class="table-title" colspan="1" id="noUnder1" <#if project.underwrittenMode! <= 2>hidden</#if>><span style="color: red;">*</span><span style="font-size: 15px">垫资利息:</span></th>
|
||||
<td class="table-title" colspan="1" id="noUnder2" <#if project.underwrittenMode! <= 2>hidden</#if>>
|
||||
<input type="text" class="number am-input" style="border-style:none;" data-validate-async data-validation-message="请输入垫资利息"
|
||||
|
@ -145,6 +147,8 @@
|
|||
</div>
|
||||
</td>
|
||||
|
||||
<th class="table-title" colspan="4" id="coop0" <#if project.cooperateType! == 1>hidden</#if>></th>
|
||||
|
||||
</tr>
|
||||
<tr class="am-text-nowrap">
|
||||
<th class="table-title" colspan="1" ><span style="color: red;">*</span><span style="font-size: 15px">合同金额:</span></th>
|
||||
|
@ -637,11 +641,13 @@
|
|||
var changeCheck = function () {
|
||||
var underwrittenMode = $("#underwrittenMode").val();
|
||||
if (underwrittenMode <= 2) {
|
||||
$("#noUnder0").show();
|
||||
$("#noUnder1").hide();
|
||||
$("#noUnder2").hide();
|
||||
$("#noUnder3").hide();
|
||||
$("#noUnder4").hide();
|
||||
} else {
|
||||
$("#noUnder0").hide();
|
||||
$("#noUnder1").show();
|
||||
$("#noUnder2").show();
|
||||
$("#noUnder3").show();
|
||||
|
@ -652,9 +658,11 @@
|
|||
var changeCheck2 = function () {
|
||||
var cooperateType = $("#cooperateType").val();
|
||||
if (cooperateType == 1) {
|
||||
$("#coop0").hide();
|
||||
$("#coop1").show();
|
||||
$("#coop2").show();
|
||||
} else {
|
||||
$("#coop0").show();
|
||||
$("#coop1").hide();
|
||||
$("#coop2").hide();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue