Browse Source

commit

main
mac 7 days ago
parent
commit
23ef8f6f02
  1. 22
      src/pages/swiper/index.tsx

22
src/pages/swiper/index.tsx

@ -87,7 +87,11 @@ const Swiper: FC = () => {
},
{
title: '类型',
dataIndex: 'dapp_type'
dataIndex: 'dapp_type',
render: (type) => {
let item = optionTypes.find(item => item.value === `${type}`)
return <div>{item ? item.label : type}</div>
}
},
{
title: '网页地址',
@ -158,26 +162,10 @@ const Swiper: FC = () => {
value: '42161',
label: 'Arbitrum One'
},
{
value: '137',
label: 'Polygon Mainnet'
},
{
value: '10',
label: 'OP Mainnet'
},
{
value: '100',
label: 'xDai Chain'
},
{
value: '10',
label: 'OP Mainnet'
},
{
value: '314',
label: 'Filecoin Mainnet'
},
{
value: '97',
label: 'BSC Testnet'

Loading…
Cancel
Save