|
@ -5,8 +5,7 @@ import store from "~/store"; |
|
|
import { observer } from "mobx-react"; |
|
|
import { observer } from "mobx-react"; |
|
|
import { useRouter } from "~/hooks/useRouter"; |
|
|
import { useRouter } from "~/hooks/useRouter"; |
|
|
import BackBar from "~/components/BackBar"; |
|
|
import BackBar from "~/components/BackBar"; |
|
|
import { Cell, Empty, List, Tabs } from "react-vant"; |
|
|
|
|
|
import { debounce } from 'lodash'; |
|
|
|
|
|
|
|
|
import { Cell, Empty, List } from "react-vant"; |
|
|
import '~/styles/personal.scss'; |
|
|
import '~/styles/personal.scss'; |
|
|
import { history_record } from "~/api"; |
|
|
import { history_record } from "~/api"; |
|
|
|
|
|
|
|
@ -14,23 +13,25 @@ const Record = () => { |
|
|
|
|
|
|
|
|
const { token } = store.state; |
|
|
const { token } = store.state; |
|
|
const { push, location } = useRouter() |
|
|
const { push, location } = useRouter() |
|
|
|
|
|
|
|
|
const recordTabs = useMemo(() => ['充值', '提現', '收益'], []); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const recordTabs = useMemo(() => ['充值', '提現', '收益', '邀請收益'], []); |
|
|
const [recordIndex, setRecordIndex] = useState(location.state ? location.state.index : 0); |
|
|
const [recordIndex, setRecordIndex] = useState(location.state ? location.state.index : 0); |
|
|
const { copyVal } = useCopyLink(); |
|
|
const { copyVal } = useCopyLink(); |
|
|
const [query, setQuery] = useState([ |
|
|
const [query, setQuery] = useState([ |
|
|
{ page: 1, page_size: 20 }, |
|
|
{ page: 1, page_size: 20 }, |
|
|
{ page: 1, page_size: 20 }, |
|
|
{ page: 1, page_size: 20 }, |
|
|
{ page: 1, page_size: 20 }, |
|
|
{ page: 1, page_size: 20 }, |
|
|
|
|
|
{ page: 1, page_size: 20 }, |
|
|
]); |
|
|
]); |
|
|
const [finished, setFinished] = useState<boolean[]>([true, true, true]); |
|
|
const [finished, setFinished] = useState<boolean[]>([true, true, true]); |
|
|
const [assetsRecord, setAssetsRecord] = useState([ |
|
|
const [assetsRecord, setAssetsRecord] = useState([ |
|
|
[] as any[], |
|
|
[] as any[], |
|
|
[] as any[], |
|
|
[] as any[], |
|
|
[] as any[], |
|
|
[] as any[], |
|
|
|
|
|
[] as any[], |
|
|
]); |
|
|
]); |
|
|
|
|
|
|
|
|
const getAssetsRecord = debounce(async () => { |
|
|
|
|
|
|
|
|
const getAssetsRecord = async () => { |
|
|
|
|
|
|
|
|
let res: any = await history_record({ type: recordIndex + 1, ...query[recordIndex] }); |
|
|
let res: any = await history_record({ type: recordIndex + 1, ...query[recordIndex] }); |
|
|
if (res.code === 0) { |
|
|
if (res.code === 0) { |
|
@ -56,13 +57,14 @@ const Record = () => { |
|
|
setAssetsRecord([...assetsRecord]); |
|
|
setAssetsRecord([...assetsRecord]); |
|
|
setQuery([...query]); |
|
|
setQuery([...query]); |
|
|
}; |
|
|
}; |
|
|
}, 200); |
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
const renderItem = (index: number) => { |
|
|
const renderItem = (index: number) => { |
|
|
let el = [ |
|
|
let el = [ |
|
|
<RechargeRecord list={assetsRecord[recordIndex]} copy={copyVal} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
<RechargeRecord list={assetsRecord[recordIndex]} copy={copyVal} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
<WithdrawRecord list={assetsRecord[recordIndex]} copy={copyVal} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
<WithdrawRecord list={assetsRecord[recordIndex]} copy={copyVal} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
<TransferRecord list={assetsRecord[recordIndex]} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
<TransferRecord list={assetsRecord[recordIndex]} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
|
|
|
<InviteIncomeRecord list={assetsRecord[recordIndex]} finished={finished[recordIndex]} getData={getAssetsRecord} />, |
|
|
]; |
|
|
]; |
|
|
return el[index]; |
|
|
return el[index]; |
|
|
}; |
|
|
}; |
|
@ -79,30 +81,21 @@ const Record = () => { |
|
|
<BackBar |
|
|
<BackBar |
|
|
title='賬單' |
|
|
title='賬單' |
|
|
/> |
|
|
/> |
|
|
<Tabs |
|
|
|
|
|
swipeable |
|
|
|
|
|
type="capsule" |
|
|
|
|
|
background="rgb(248,247,255)" |
|
|
|
|
|
sticky |
|
|
|
|
|
defaultActive={recordIndex} |
|
|
|
|
|
offsetTop={window.innerWidth / 430 * 60} |
|
|
|
|
|
onChange={(_, index) => setRecordIndex(index)} |
|
|
|
|
|
align="start" |
|
|
|
|
|
className="tabs" |
|
|
|
|
|
lazyRender |
|
|
|
|
|
> |
|
|
|
|
|
{ |
|
|
|
|
|
recordTabs.map((item, index) => ( |
|
|
|
|
|
<Tabs.TabPane |
|
|
|
|
|
key={index} |
|
|
|
|
|
title={item} |
|
|
|
|
|
titleStyle={{ width: 70, height: 30, padding: 0 }} |
|
|
|
|
|
> |
|
|
|
|
|
{renderItem(index)} |
|
|
|
|
|
</Tabs.TabPane> |
|
|
|
|
|
)) |
|
|
|
|
|
} |
|
|
|
|
|
</Tabs> |
|
|
|
|
|
|
|
|
<div className="tabs-sticky"> |
|
|
|
|
|
<div className="row-items mt-2 flex-1"> |
|
|
|
|
|
{ |
|
|
|
|
|
recordTabs.map((tx, index) => ( |
|
|
|
|
|
<div key={index} className={`mr-3 ${index === recordIndex ? 'black' : 'sub-text'} fz-wb-550`} onClick={() => setRecordIndex(index)}>{tx}</div> |
|
|
|
|
|
)) |
|
|
|
|
|
} |
|
|
|
|
|
</div> |
|
|
|
|
|
<div style={{ width: '100%', height: 1 }} className="sub-text-bg mt-1"></div> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div> |
|
|
|
|
|
{renderItem(recordIndex)} |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
@ -121,7 +114,7 @@ const RechargeRecord = ( |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
|
|
|
|
|
|
return ( |
|
|
return ( |
|
|
<List finished={finished} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
|
|
|
|
|
|
<List finished={finished} finishedText={list.length >= 20 && "已經到底了"} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
{ |
|
|
{ |
|
|
list.map((item) => ( |
|
|
list.map((item) => ( |
|
|
<Cell key={item.id} className="ptb-1" style={{ background: 'none' }}> |
|
|
<Cell key={item.id} className="ptb-1" style={{ background: 'none' }}> |
|
@ -157,7 +150,7 @@ const WithdrawRecord = ({ list, finished, getData, copy }: ChildProps) => { |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
|
|
|
|
|
|
return ( |
|
|
return ( |
|
|
<List finished={finished} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
|
|
|
|
|
|
<List finished={finished} finishedText={list.length >= 20 && "已經到底了"} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
{ |
|
|
{ |
|
|
list.map((item, index) => ( |
|
|
list.map((item, index) => ( |
|
|
<Cell className='ptb-1' key={item.id} style={{ background: 'none' }}> |
|
|
<Cell className='ptb-1' key={item.id} style={{ background: 'none' }}> |
|
@ -193,7 +186,7 @@ const TransferRecord = ({ list, finished, getData }: ChildProps) => { |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
|
|
|
|
|
|
return ( |
|
|
return ( |
|
|
<List finished={finished} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
|
|
|
|
|
|
<List finished={finished} finishedText={list.length >= 20 && "已經到底了"} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
{ |
|
|
{ |
|
|
list.map((item, index) => ( |
|
|
list.map((item, index) => ( |
|
|
<Cell className="ptb-1" key={item.id} style={{ background: 'none' }}> |
|
|
<Cell className="ptb-1" key={item.id} style={{ background: 'none' }}> |
|
@ -216,4 +209,27 @@ const TransferRecord = ({ list, finished, getData }: ChildProps) => { |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const InviteIncomeRecord = ({ list, finished, getData }: ChildProps) => { |
|
|
|
|
|
|
|
|
|
|
|
if (list.length <= 0 || Object.keys(list).length <= 0) return <Empty description="暫無記錄" />; |
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
|
<List finished={finished} finishedText={list.length >= 20 && "已經到底了"} onLoad={() => getData()} errorText="請求失敗,點擊重新加載" offset={10}> |
|
|
|
|
|
{ |
|
|
|
|
|
list.map((item, index) => ( |
|
|
|
|
|
<Cell className="ptb-1" key={item.id} style={{ background: 'none' }}> |
|
|
|
|
|
<div className="row-between"> |
|
|
|
|
|
<div> |
|
|
|
|
|
<div className='fz-wb-550'> {item.name}</div> |
|
|
|
|
|
<div className='sub-color fz-14 mt-6px'>{getTime(item.time * 1000)}</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div className="fz-wb-550 green">+{toThousands(item.amount)} {item.symbol}</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
</Cell> |
|
|
|
|
|
)) |
|
|
|
|
|
} |
|
|
|
|
|
</List> |
|
|
|
|
|
) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
export default observer(Record); |
|
|
export default observer(Record); |