zoukankan      html  css  js  c++  java
  • ddd



    <form id="yj-form" method="GET" action="fgyj.do">
      public List<AjxxModel> randomSelect(String ajxhs, int n) {
            String[] ajxhStrings = StringUtil.split(ajxhs, ',');
            int total = ajxhStrings.length;
            List<String> chooseAjxhs = new ArrayList<String>();
            String randomajxhs = "";
            Random rd = new Random();
            int choseNum = 0;
            if (total >= n) {
                while (choseNum < n) {
                    int choseIndex = rd.nextInt(total);
                    String choseAjxh = ajxhStrings[choseIndex];
                    if (!chooseAjxhs.contains(choseAjxh)) {
                        chooseAjxhs.add(choseAjxh); choseNum++;
                    }
                }
                for (String choseAjxh : chooseAjxhs) { randomajxhs += choseAjxh + ","; }
                if (!StringUtil.isEmpty(randomajxhs)) { randomajxhs = randomajxhs.substring(0, randomajxhs.length() - 1); }
            }else { randomajxhs = ajxhs; }
            AjcxtjModel ajcxtjModel = new AjcxtjModel();
            ajcxtjModel.setAjxhs(randomajxhs);
            List<AjxxModel> ajxxModels = ajjbDao.getAjxxByAjcxtj(ajcxtjModel);
            return ajxxModels;
        }
    
    
    
     

      <div class="search_condition">     <label> 时间范围:</label> <input name="search_kssj" type="text" class="datepicker" value="${search_kssj}" /> <label></label> <input name="search_jssj" type="text" class="datepicker" value="${search_jssj}" /> </div> <div class="search_condition"> <label><span style="0.5em; display: inline-block;"></span><span style="0.5em; display: inline-block;"></span>人:</label> <input name="search_dsr" type="text" value="${search_dsr }"/>
      </div>
    <div class="search_condition">
        <label><span style="2em; display: inline-block;"></span>门:</label>
        <select name="search_fgbm">
          <option selected="selected" value="">全部</option>
    <c:forEach items="${bmModels }" var="bmModel">
       <option value="${bmModel.dmbh }" <c:if test="${search_fgbm == bmModel.dmbh }" >selected="selected"</c:if> >${bmModel.dmms }</option>
    </c:forEach>
    </select>
    </div>
    <div class="search_condition">
       <label>约见法官:</label>
          <select name="search_yjfg" >
       <c:if test="${search_i_yjfg != '' }">
              <option value="-1">全部</option>
              <c:forEach items="${yhModels }" var="yhModel">
                <option value="${yhModel.yhbh }" <c:if test="${search_i_yjfg == yhModel.yhbh }" >selected="selected"</c:if> >${yhModel.yhmc }</option>
              </c:forEach>
    </c:if>
          </select>
    </div>
    <div class="search_btn_area">

        <input id="search" class="search_btn" type="submit" value="查 询" />
    <a href="yjxz.do"><input id="add" class="search_btn" value="新 增" /></a>
    </div>
    </form>
  • 相关阅读:
    Potato工作流管理系统 组织模型用例描述
    6/27 项目编码开始:一个简单的员工管理程序
    6/16 6/17加班2天
    重新过一遍ASP.NET 2.0(C#)(8) DataSourceControl(数据源控件)
    可行性分析报告结构
    6/27 一个简单的员工管理程序:添加微软成员资格数据表
    在asp.net 2.0中使用母版页和工厂方法模式
    工作流功能特性
    6/21 系统分析阶段汇报
    什么是工作流
  • 原文地址:https://www.cnblogs.com/zhyxBlog/p/3511703.html
Copyright © 2011-2022 走看看