vue3-components-plus 3.0.37 → 3.0.39

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.
@@ -20,6 +20,7 @@
20
20
  loading: loading,
21
21
  rowKey: 'id',
22
22
  showPagination: true,
23
+ showHeaderToolbar: false,
23
24
  }"
24
25
  @search="handleSearch"
25
26
  @reset="handleReset"
@@ -416,6 +417,7 @@ const loadData = async () => {
416
417
  const handleSearch = (params) => {
417
418
  // 更新搜索参数
418
419
  searchParams.value = { ...params }
420
+ console.error('【NsTableDemo 搜索请求参数】', JSON.stringify(params, null, 2))
419
421
  loadData()
420
422
  }
421
423