123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
-
- <div class="easyui-accordion" id="acc" style="width:100%;" data-options="selected:false">
- <div title="<i class='fa fa-ellipsis-h'></i>条件查询" style="width:100%;background:#f9f9f9; padding:3px;overflow-x:scroll" data-options="border:false">
- <input type="hidden" id="ID" />
- <table>
- <tr>
- <td style="width:70px;" class="label">项目</td>
- <td><input class="easyui-combobox" name="XMID" style="width:180px" id="XMID" data-options="prompt:'项目名称',limitToList:true,panelHeight:200,tipPosition:'top'" /></td>
- <td class="label">机构</td>
- <td>
- <input id="JGID" name="JGID" editable class="easyui-combobox"
- data-options="prompt:'机构:',labelAlign:'right',limitToList:true,panelHeight:200" style="width: 180px;" />
- </td>
- <td class="label"></td>
- <td style="padding-left:10px">
- <a id="btnClear" href="#" class="easyui-linkbutton c2"><i class="fa fa-empire"></i> 清空条件</a>
- <br />
- </td>
- </tr>
- <tr>
- <td class="label">产品</td>
- <td><input class="easyui-combobox" name="CPID" style="width:180px" id="CPID" data-options="prompt:'产品名称', limitToList:true,panelHeight:200,tipPosition:'top'" /></td>
- <td class="label">模块</td>
- <td>
- <input class="easyui-combobox" name="CPMKID" style="width:180px" id="CPMKID" data-options="prompt:'模块名称', limitToList:true,panelHeight:200,tipPosition:'top'" />
- </td>
- <td class="label">解决版本状态</td>
- <td style="padding-left:10px">
- <input class="easyui-combobox" name="JJBBZT" style="width:210px" id="JJBBZT" data-options="limitToList:true,panelHeight:200,tipPosition:'top'" />
- </td>
- </tr>
- <tr>
- <td class="label">迭代任务</td>
- <td><input class="easyui-combobox" style="width:180px" id="DDID" data-options="prompt:'迭代任务',limitToList:true,panelHeight:220,panelWidth:300,tipPosition:'top'" /> </td>
- <td class="label">登记版本</td>
- <td><input class="easyui-combobox" style="width:180px" id="BBID" data-options="prompt:'版本',limitToList:true,panelHeight:220,panelWidth:300,tipPosition:'top'" /> </td>
- <td class="label">解决版本</td>
- <td style="padding-left:10px">
- <input class="easyui-combobox" style="width:210px" id="JJBB" disabled data-options="prompt:'版本',limitToList:true,panelHeight:220,panelWidth:300,tipPosition:'top'" />
- <div class="layui-inline layui-form" id="whether">
- <input type="radio" name="LX" value="2" title="全部" lay-filter="whether" checked>
- <input type="radio" name="LX" value="1" title="指定" lay-filter="whether">
- <input type="radio" name="LX" value="0" title="未指定" lay-filter="whether">
- </div>
- </td>
- </tr>
- <tr>
- <td class="label">问题性质</td>
- <td>
- <input class="easyui-combobox" name="WTXZ" style="width:180px" id="WTXZ" data-options="prompt:'问题性质', limitToList:true,panelHeight:150,tipPosition:'top'" />
- </td>
- <td class="label">紧急程度</td>
- <td>
- <input class="easyui-combobox" name="JJDM" style="width:180px" id="JJDM" data-options="prompt:'紧急程度', limitToList:true,panelHeight:150,tipPosition:'top'" />
- </td>
- <td class="label">流程环节</td>
- <td style="padding-left:10px">
- <input class="easyui-combobox" name="HJID" style="width:210px" id="HJID" data-options="prompt:'流程环节',limitToList:true,panelHeight:220,tipPosition:'top'" />
- </td>
- </tr>
- <tr>
- <td class="label">登记人</td>
- <td><input class="easyui-textbox" style="width:180px" id="DJR" data-options="prompt:'登记人'" /> </td>
- <td class="label">研发处理人</td>
- <td><input class="easyui-textbox" style="width:180px" id="YFCLRID" data-options="prompt:'研发人'" /> </td>
- <td class="label">测试处理人</td>
- <td style="padding-left:10px"><input class="easyui-textbox" style="width:210px" id="CSCLRID" data-options="prompt:'测试人'" /> </td>
- </tr>
- <tr>
- <td class="label">登记日期</td>
- <td>
- <input id="dbStartDate" type="text" class="easyui-datebox" style="width:120px">-
- <input id="dbEndDate" type="text" class="easyui-datebox" style="width:120px">
- </td>
- <td class="label">终止/解决日期 </td>
- <td>
- <input id="zzStartDate" type="text" class="easyui-datebox" style="width:120px">-
- <input id="zzEndDate" type="text" class="easyui-datebox" style="width:120px">
- </td>
- <td class="label">受理人</td>
- <td style="padding-left:10px"><input class="easyui-textbox" style="width:210px" id="SLRID" data-options="prompt:'受理人'" /> </td>
- </tr>
- </table>
- </div>
- </div>
- <style>
- .layui-form radio{margin-left:0px}
- </style>
- <script type="text/javascript">
- $(function () {
- layui.use('form', function () {
- var form = layui.form;
- form.on('radio(whether)', function (data) {
- if (data.value == 1) {
- $('#JJBB').combobox({ disabled: false });
- }
- else {
- $('#JJBB').combobox("setValue", "");
- $('#JJBB').combobox({ disabled: true });
- }
- })
- })
- })
- </script>
|