page.js 206 B

12345678910
  1. var pageObj = {
  2. "total": 0,//总条数
  3. "size": 20,//每页行数
  4. "current": 1,//当前页码
  5. 't':''
  6. };
  7. function setPage(obj) {
  8. pageObj.current=obj.current;
  9. pageObj.total=obj.total;
  10. }