From 9f74a890730d7f6743ad39c6bfd4f582ca0f0077 Mon Sep 17 00:00:00 2001 From: vance <1143350292@qq.com> Date: Tue, 16 Aug 2022 15:54:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E8=A7=84=E8=8C=83=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/DataBoard/RechargeAnalysis/List/index.tsx | 2 +- src/pages/DataBoard/RetentionAnalysis/List/index.tsx | 3 +-- src/pages/Nft/NftContract/List/index.tsx | 2 +- src/pages/Nft/NftToken/List/index.tsx | 2 +- .../List/components/moreData.tsx => widget/MoreData.tsx} | 0 src/widget/{Work => }/PaySelectModal.tsx | 0 6 files changed, 4 insertions(+), 5 deletions(-) rename src/{pages/DataBoard/ActiveAnalysis/List/components/moreData.tsx => widget/MoreData.tsx} (100%) rename src/widget/{Work => }/PaySelectModal.tsx (100%) diff --git a/src/pages/DataBoard/RechargeAnalysis/List/index.tsx b/src/pages/DataBoard/RechargeAnalysis/List/index.tsx index 392d384..71c1b62 100644 --- a/src/pages/DataBoard/RechargeAnalysis/List/index.tsx +++ b/src/pages/DataBoard/RechargeAnalysis/List/index.tsx @@ -1,6 +1,6 @@ import React, { useRef, useState } from 'react'; import Table, { ProColumns, ActionType } from '@/components/Table'; -import { getRententionData } from '@/services/DataBorad/rechargeAnalysis'; +import { getRententionData } from '@/services/dataBorad/rechargeAnalysis'; import { DatePicker, Select } from 'antd'; import moment from 'moment'; import TimeType from '@/constants/enum/timeType'; diff --git a/src/pages/DataBoard/RetentionAnalysis/List/index.tsx b/src/pages/DataBoard/RetentionAnalysis/List/index.tsx index 5a90881..3fe69e4 100644 --- a/src/pages/DataBoard/RetentionAnalysis/List/index.tsx +++ b/src/pages/DataBoard/RetentionAnalysis/List/index.tsx @@ -1,10 +1,9 @@ import React, { useRef, useState } from 'react'; import Table, { ProColumns, ActionType } from '@/components/Table'; -import { DatePicker } from 'antd'; import moment from 'moment'; import { fetchTableData } from '@/utils/table'; import { getRententionData } from '@/services/dataBorad/retentionAnalysis'; -import TableModal from '@/pages/DataBoard/RetentionAnalysis/List/components/TableModal'; +import TableModal from './components/TableModal'; const RetentionAnalysis = () => { const [visible, setVisible] = useState(false); diff --git a/src/pages/Nft/NftContract/List/index.tsx b/src/pages/Nft/NftContract/List/index.tsx index a129255..7f8ec80 100644 --- a/src/pages/Nft/NftContract/List/index.tsx +++ b/src/pages/Nft/NftContract/List/index.tsx @@ -2,7 +2,7 @@ import React, { useRef, useState } from 'react'; import Table, { ProColumns, ActionType } from '@/components/Table'; import { message } from 'antd'; // import { fetchTableData } from '@/utils/table'; -import AddNftContractModal from '@/pages/Nft/NftContract/List/components/AddNftContract'; +import AddNftContractModal from './components/AddNftContract'; const Address: React.FC = () => { const tableRef = useRef(); diff --git a/src/pages/Nft/NftToken/List/index.tsx b/src/pages/Nft/NftToken/List/index.tsx index ccf2aa5..ea6c4a4 100644 --- a/src/pages/Nft/NftToken/List/index.tsx +++ b/src/pages/Nft/NftToken/List/index.tsx @@ -3,7 +3,7 @@ import Table, { ProColumns, ActionType } from '@/components/Table'; import { message } from 'antd'; // import { fetchTableData } from '@/utils/table'; -import AddNftModal from '@/pages/Nft/NftToken/List/components/AddNftModel'; +import AddNftModal from './components/AddNftModel'; import PaySelectModal from '@/widget/Work/PaySelectModal'; const Address: React.FC = () => { diff --git a/src/pages/DataBoard/ActiveAnalysis/List/components/moreData.tsx b/src/widget/MoreData.tsx similarity index 100% rename from src/pages/DataBoard/ActiveAnalysis/List/components/moreData.tsx rename to src/widget/MoreData.tsx diff --git a/src/widget/Work/PaySelectModal.tsx b/src/widget/PaySelectModal.tsx similarity index 100% rename from src/widget/Work/PaySelectModal.tsx rename to src/widget/PaySelectModal.tsx