Commit 8d060eda by CalciumIon

feat: 优化rpm查询

parent 78ffd8d2
...@@ -577,6 +577,7 @@ const LogsTable = () => { ...@@ -577,6 +577,7 @@ const LogsTable = () => {
const refresh = async () => { const refresh = async () => {
// setLoading(true); // setLoading(true);
setActivePage(1); setActivePage(1);
handleEyeClick();
await loadLogs(0, pageSize, logType); await loadLogs(0, pageSize, logType);
}; };
...@@ -740,7 +741,6 @@ const LogsTable = () => { ...@@ -740,7 +741,6 @@ const LogsTable = () => {
onChange={(value) => { onChange={(value) => {
setLogType(parseInt(value)); setLogType(parseInt(value));
loadLogs(0, pageSize, parseInt(value)); loadLogs(0, pageSize, parseInt(value));
handleEyeClick();
}} }}
> >
<Select.Option value='0'>全部</Select.Option> <Select.Option value='0'>全部</Select.Option>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment