|
|
@@ -23,7 +23,17 @@
|
|
23
|
23
|
<li>
|
|
24
|
24
|
<label>卡商</label>
|
|
25
|
25
|
<input class="easyui-textbox" id="kasname">
|
|
26
|
|
- </li>
|
|
|
26
|
+ </li>
|
|
|
27
|
+ <li>
|
|
|
28
|
+ <label>使用类型</label>
|
|
|
29
|
+ <select class="easyui-combobox" name="simtype" id="simtype">
|
|
|
30
|
+ data-options="prompt:'请选择',required:true,editable:false">
|
|
|
31
|
+ <option value="-1">全部</option>
|
|
|
32
|
+ <option value="1">纯物联网卡</option>
|
|
|
33
|
+ <option value="2">设备卡</option>
|
|
|
34
|
+ <option value="3">esim卡</option>
|
|
|
35
|
+ </select>
|
|
|
36
|
+ </li>
|
|
27
|
37
|
</ul>
|
|
28
|
38
|
<span style="float:right;padding-right:20px;">
|
|
29
|
39
|
<a href="#" class="easyui-linkbutton" iconCls="icon-search-green" plain="true" onclick="getSearchList()">搜索</a>
|
|
|
@@ -199,7 +209,7 @@
|
|
199
|
209
|
});
|
|
200
|
210
|
|
|
201
|
211
|
function getSearchList(){
|
|
202
|
|
- var params = {"orgid":$('#orgcc').combobox('getValue'),"kasname":$('#kasname').textbox('getValue'),
|
|
|
212
|
+ var params = {"orgid":$('#orgcc').combobox('getValue'),"kasname":$('#kasname').textbox('getValue'),"simtype":$('#simtype').combobox('getValue')
|
|
203
|
213
|
};
|
|
204
|
214
|
$('#common-table').datagrid('load',params);
|
|
205
|
215
|
}
|
|
|
@@ -278,6 +288,8 @@
|
|
278
|
288
|
$('#orgcc').combobox('setText', "");
|
|
279
|
289
|
$('#isenable').combobox('setValue', "-1");
|
|
280
|
290
|
$('#isenable').combobox('setText', "全部");
|
|
|
291
|
+ $('#simtype').combobox('setValue', "-1");
|
|
|
292
|
+ $('#simtype').combobox('setText', "全部");
|
|
281
|
293
|
$('#proname').textbox('setValue', "");
|
|
282
|
294
|
getSearchList();
|
|
283
|
295
|
}
|