"use client"; import React from "react"; import { Button, Card, Col, Dropdown, Row, Space, Table, Tabs, type TabsProps, Tag, Typography, } from "antd"; import { CalculatorOutlined, MoreOutlined } from "@ant-design/icons"; import Link from "antd/lib/typography/Link"; import MyStake from "@/app/home/resources2/components/MyStake"; const { Text } = Typography; const OtherAccounts = () => { const columns_key1 = [ { title: "资源类型", dataIndex: "name", key: "name", }, { title: "获取资源数量", dataIndex: "quantity", key: "quantity", }, { title: "质押数量", dataIndex: "name", key: "name", }, { title: "最后操作时间 (UTC)", dataIndex: "quantity", key: "quantity", }, { title: "操作", render: () => { return ( ); }, }, ]; const items: TabsProps["items"] = [ { key: "1", label: "质押获得", children: , }, { key: "2", label: "他人代理给自己", children:
, }, { key: "3", label: "代理给他人", children:
, }, ]; return (
管理其他账户权限
持有“拥有者权限” 你持有以下其他账户的最高权限,可以调整账户的权限结构、执行所有操作。
} >
持有“活跃权限” 你持有以下其他账户的活跃权限,可以执行被授权的操作。 } >
); }; export default OtherAccounts;