Commit 56567f7d2ab40217e8679ea985b66030ed2d14f6

Authored by 廖磊
1 parent 2cabed9c

越界sql 去掉 id

src/main/java/com/bsth/service/excep/impl/OutboundServiceImpl.java
... ... @@ -69,7 +69,7 @@ public class OutboundServiceImpl implements OutboundService{
69 69 }
70 70  
71 71 }
72   - sql +=" order by id limit ?,?";
  72 + sql +=" limit ?,?";
73 73  
74 74  
75 75 try {
... ...
src/main/resources/static/pages/excep/boundList.html
... ... @@ -157,7 +157,7 @@ $(function(){
157 157 increaseArea: '20%'
158 158 }
159 159  
160   - jsDoQuery(null,true);
  160 +// jsDoQuery(null,true);
161 161  
162 162 //重置
163 163 $('tr.filter .filter-cancel').on('click', function(){
... ...