|
@@ -2,7 +2,7 @@ import PageContent from '@/components/PageContent';
|
|
|
import PageTitle from '@/components/PageTitle';
|
|
|
import ScrollLoading from '@/components/ScrollLoading';
|
|
|
import { getHistoryRecord } from '@/services/SmartOps';
|
|
|
-import { GetTokenFromUrl } from '@/utils/utils';
|
|
|
+import { GetTokenFromUrl, UnityAction } from '@/utils/utils';
|
|
|
import { useNavigate, useParams, useRequest } from '@umijs/max';
|
|
|
import { Button, DatePicker, Select, Table } from 'antd';
|
|
|
import dayjs from 'dayjs';
|
|
@@ -170,6 +170,10 @@ const HistoryRecord = (props) => {
|
|
|
setFormData(tempFormData);
|
|
|
}, [queryParams]);
|
|
|
|
|
|
+ useEffect(() => {
|
|
|
+ UnityAction.sendMsg('EnterHistoryPage');
|
|
|
+ }, []);
|
|
|
+
|
|
|
return (
|
|
|
<PageContent>
|
|
|
<PageTitle returnable>历史记录</PageTitle>
|