@yoooloo42/joker 1.0.157 → 1.0.158

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -41999,12 +41999,12 @@ const hdl = {
41999
41999
  },
42000
42000
  pageSizeChange(pageSize) {
42001
42001
  // 重新分页
42002
- tableProps_box.query.pageSize = pageSize;
42003
- tableProps_box.query.currentPage = 1;
42002
+ tableData_box.pageSize = pageSize;
42003
+ tableData_box.currentPage = 1;
42004
42004
  },
42005
42005
  currentPageChange(currentPage) {
42006
42006
  // 修改当前页号
42007
- tableProps_box.query.currentPage = currentPage;
42007
+ tableData_box.currentPage = currentPage;
42008
42008
  }
42009
42009
  };
42010
42010
 
@@ -42369,9 +42369,9 @@ return (_ctx, _cache) => {
42369
42369
  vue.createCommentVNode(" 分页 "),
42370
42370
  vue.createVNode(_component_el_pagination, {
42371
42371
  total: vue.unref(tableData_box).total,
42372
- "page-size": vue.unref(tableProps_box).query.pageSize,
42373
- "page-sizes": [vue.unref(tableProps_box).query.pageSize],
42374
- "current-page": vue.unref(tableProps_box).query.currentPage,
42372
+ "page-size": vue.unref(tableData_box).pageSize,
42373
+ "page-sizes": [vue.unref(tableData_box).pageSize],
42374
+ "current-page": vue.unref(tableData_box).currentPage,
42375
42375
  style: vue.normalizeStyle(style.pagination),
42376
42376
  onSizeChange: hdl.pageSizeChange,
42377
42377
  onCurrentChange: hdl.currentPageChange,