From ca87af0bdca98475c91b80347d193bf3fcc5a9f7 Mon Sep 17 00:00:00 2001 From: zzy Date: Thu, 18 Aug 2022 15:46:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Recharge/Address/List/index.tsx | 4 ++-- src/pages/Recharge/CoinType/List/index.tsx | 4 ++-- src/pages/System/Account/List/index.tsx | 4 ++-- src/pages/System/Notice/List/index.tsx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/Recharge/Address/List/index.tsx b/src/pages/Recharge/Address/List/index.tsx index 061f3b6..33ff914 100644 --- a/src/pages/Recharge/Address/List/index.tsx +++ b/src/pages/Recharge/Address/List/index.tsx @@ -9,8 +9,8 @@ import { import { fetchTableData } from '@/utils/table'; import DeleteButton from '@/components/Table/DeleteButton'; -import AddAddressModal from '../Components/addAddressModal'; -import EditAddressModal from '../Components/editAddressModal'; +import AddAddressModal from '../Components/AddAddressModal'; +import EditAddressModal from '../Components/EditAddressModal'; const CollectionAddressList = () => { const tableRef = useRef(); diff --git a/src/pages/Recharge/CoinType/List/index.tsx b/src/pages/Recharge/CoinType/List/index.tsx index 2bce8d4..aa661b1 100644 --- a/src/pages/Recharge/CoinType/List/index.tsx +++ b/src/pages/Recharge/CoinType/List/index.tsx @@ -2,8 +2,8 @@ import React, { useState, useRef } from 'react'; import Table, { ProColumns, ActionType } from '@/components/Table'; import { addCoinType, getCoinTypeList, modifyCoinType } from '@/services/recharge/coinType'; import { fetchTableData } from '@/utils/table'; -import AddCoinTypeModal from '../Components/addCoinTypeModal'; -import EditCoinTypeModal from '../Components/editCoinTypeModal'; +import AddCoinTypeModal from '../Components/AddCoinTypeModal'; +import EditCoinTypeModal from '../Components/EditCoinTypeModal'; const CoinTypeList = () => { const tableRef = useRef(); diff --git a/src/pages/System/Account/List/index.tsx b/src/pages/System/Account/List/index.tsx index 8f7e517..537d19d 100644 --- a/src/pages/System/Account/List/index.tsx +++ b/src/pages/System/Account/List/index.tsx @@ -9,8 +9,8 @@ import { import { fetchTableData } from '@/utils/table'; import DeleteButton from '@/components/Table/DeleteButton'; import { Switch } from 'antd'; -import AddAccountModal from '../Components/addAccountModal'; -import EditAccountModal from '../Components/editAccountModal'; +import AddAccountModal from '../Components/AddAccountModal'; +import EditAccountModal from '../Components/EditAccountModal'; const AccountManageList = () => { const [isModalVisible, setIsModalVisible] = useState(false); diff --git a/src/pages/System/Notice/List/index.tsx b/src/pages/System/Notice/List/index.tsx index 28d3426..593fec3 100644 --- a/src/pages/System/Notice/List/index.tsx +++ b/src/pages/System/Notice/List/index.tsx @@ -2,10 +2,10 @@ import React, { useState, useRef } from 'react'; import Table, { ProColumns, ActionType } from '@/components/Table'; import { getNoticeList, createNotice, updateNotice, deleteNotice } from '@/services/system/notice'; import { fetchTableData } from '@/utils/table'; -import AddNoticeModal from '../Components/addNoticeModal'; +import AddNoticeModal from '../Components/AddNoticeModal'; import DeleteButton from '@/components/Table/DeleteButton'; import { Switch } from 'antd'; -import EditNoticeModal from '../Components/editNoticeModal'; +import EditNoticeModal from '../Components/EditNoticeModal'; const NoticeList = () => { const tableRef = useRef();