select的readonly
parent
bf52895e0a
commit
886ff7fe4d
|
@ -1,7 +1,14 @@
|
||||||
<#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>
|
||||||
|
|
||||||
|
/*select的readonly不生效,他把select渲染成其他的了*/
|
||||||
|
.select-hide .am-selected-content{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</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">
|
||||||
|
@ -69,8 +76,8 @@
|
||||||
|
|
||||||
<div class="am-g am-form-group am-margin-top">
|
<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-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 class="am-u-sm-6 am-u-md-6 select-hide">
|
||||||
<select data-am-selected id="type" name="type" readonly="">
|
<select data-am-selected id="type" name="type" readonly>
|
||||||
<option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
|
<option value="1" <#if project.type=1>selected</#if>>工程集成类</option>
|
||||||
<option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
|
<option value="2" <#if project.type=2>selected</#if>>设备集成类</option>
|
||||||
<option value="3" <#if project.type=3>selected</#if>>战略合作类</option>
|
<option value="3" <#if project.type=3>selected</#if>>战略合作类</option>
|
||||||
|
@ -80,8 +87,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="am-g am-form-group am-margin-top">
|
<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-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 class="am-u-sm-6 am-u-md-6 select-hide">
|
||||||
<select data-am-selected id="underwrittenMode" name="underwrittenMode" readonly="">
|
<select data-am-selected id="underwrittenMode" name="underwrittenMode" readonly>
|
||||||
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option>
|
<option value="1" <#if project.underwrittenMode=1>selected</#if>>A类-不垫资(战略合作)</option>
|
||||||
<option value="2" <#if project.underwrittenMode=2>selected</#if>>B类-不垫资(背靠背)</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="3" <#if project.underwrittenMode=3>selected</#if>>C类-垫资(账期覆盖)</option>
|
||||||
|
|
Loading…
Reference in New Issue