@jswork/antd-components 1.0.136 → 1.0.137
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/main.cjs.js +1 -1
- package/dist/main.esm.js +1 -1
- package/dist/main.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/table.tsx +2 -3
package/package.json
CHANGED
package/src/lib/table.tsx
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* @Author: aric 1290657123@qq.com
|
|
3
3
|
* @Date: 2025-10-03 07:11:26
|
|
4
4
|
* @LastEditors: aric 1290657123@qq.com
|
|
5
|
-
* @LastEditTime: 2025-10-24 21:
|
|
5
|
+
* @LastEditTime: 2025-10-24 21:11:05
|
|
6
6
|
*/
|
|
7
7
|
import type { EventMittNamespace } from '@jswork/event-mitt';
|
|
8
8
|
import { ReactHarmonyEvents } from '@jswork/harmony-events';
|
|
9
9
|
import UrlSyncFlat from '@jswork/url-sync-flat';
|
|
10
|
-
import {
|
|
10
|
+
import { Table, TableProps } from 'antd';
|
|
11
11
|
import cx from 'classnames';
|
|
12
12
|
import React from 'react';
|
|
13
13
|
import nx from '@jswork/next';
|
|
@@ -168,7 +168,6 @@ export class AcTable extends React.Component<AcTableProps, AcTableState> {
|
|
|
168
168
|
total: 0,
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
|
-
void message.error(error?.message || error?.toString?.());
|
|
172
171
|
} finally {
|
|
173
172
|
if (!abortController.signal.aborted) {
|
|
174
173
|
this.setState({ isLoading: false });
|