| | |
| | | |
| | | //查询按钮 |
| | | form.on('submit(btnSearch)', function (data) { |
| | | |
| | | var HNumber = $("#HNumber").val(); |
| | | var HName = $("#HName").val(); |
| | | if (HNumber) { |
| | | sWhere += " and HNumber like '%" + HNumber + "%'"; |
| | | } |
| | | if (HName) { |
| | | sWhere += " and HName like '%" + HName + "%'"; |
| | | } |
| | | $.ajax({ |
| | | url: GetWEBURL() + '/PublicPageMethod/PartList', |
| | | type: "GET", |
| | | data: { "sWhere": SeachFilter(sWhere1) }, |
| | | data: { "sWhere": sWhere}, |
| | | success: function (data1) { |
| | | if (data1.count == 1) { |
| | | option.data = data1.data; |
| | |
| | | layer.alert("接口请求失败!", { icon: 5 }); |
| | | } |
| | | }); |
| | | sWhere = "";//调用接口后清空sWhere缓存 |
| | | sWhere = "where 1=1 ";//调用接口后清空sWhere缓存 |
| | | }); |
| | | |
| | | //以上是layui模块 |