<c:if test="${topicInfo.conferenceSystemId != '1' and topicInfo.conferenceSystemId != '2'}">
                
</c:if>
<c:if test="${topicInfo.conferenceSystemId == '1' or topicInfo.conferenceSystemId == '2'}">
                
</c:if>

 

<c:forEach items="${ typeList}" var="item" varStatus="status">
        <c:if test="${ status.index == 0}">
               <option value=${item.dictValue } selected="selected">${item.dictLable }</option>
        </c:if>
        <c:if test="${ status.index != 0}">
               <option value=${item.dictValue } >${item.dictLable }</option>
        </c:if>
</c:forEach>

 

相关文章:

  • 2021-10-03
  • 2021-08-16
  • 2021-10-17
  • 2021-08-02
  • 2022-12-23
  • 2021-11-06
  • 2022-03-08
  • 2021-07-14
猜你喜欢
  • 2021-07-24
  • 2020-05-21
  • 2021-07-27
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案