项目阶段更新

master
hanbo 2022-12-09 16:50:49 +08:00
parent 981dfcdf32
commit d9d8bbb8a2
1 changed files with 10 additions and 10 deletions

View File

@ -375,16 +375,16 @@
<th class="table-title" colspan="1" ><span style="font-size: 15px">项目阶段:</span></th>
<td class="table-title" colspan="1" >
<select data-am-selected="{btnSize: 'sm',btnWidth: '80%',searchBox: 1}" id="stage" name="stage">
<option value="0" <#if project.stage=0>selected</#if>>S0-概算立项</option>
<option value="1" <#if project.stage=1>selected</#if>>S1-项目调研</option>
<option value="2" <#if project.stage=2>selected</#if>>S2-方案设计</option>
<option value="3" <#if project.stage=3>selected</#if>>S3-预算评估</option>
<option value="4" <#if project.stage=4>selected</#if>>S4-招标期</option>
<option value="5" <#if project.stage=5>selected</#if>>S5-合同期</option>
<option value="6" <#if project.stage=6>selected</#if>>S6-交付期</option>
<option value="7" <#if project.stage=7>selected</#if>>S7-结算期</option>
<option value="8" <#if project.stage=8>selected</#if>>S8-决算期</option>
<option value="9" <#if project.stage=9>selected</#if>>L-项目丢失</option>
<option value="0" <#if project.stage?? && project.stage=0>selected</#if>>S0-概算立项</option>
<option value="1" <#if project.stage?? && project.stage=1>selected</#if>>S1-项目调研</option>
<option value="2" <#if project.stage?? && project.stage=2>selected</#if>>S2-方案设计</option>
<option value="3" <#if project.stage?? && project.stage=3>selected</#if>>S3-预算评估</option>
<option value="4" <#if project.stage?? && project.stage=4>selected</#if>>S4-招标期</option>
<option value="5" <#if project.stage?? && project.stage=5>selected</#if>>S5-合同期</option>
<option value="6" <#if project.stage?? && project.stage=6>selected</#if>>S6-交付期</option>
<option value="7" <#if project.stage?? && project.stage=7>selected</#if>>S7-结算期</option>
<option value="8" <#if project.stage?? && project.stage=8>selected</#if>>S8-决算期</option>
<option value="9" <#if project.stage?? && project.stage=9>selected</#if>>L-项目丢失</option>
</select>
</td>
</tr>