diff --git a/src/pages/assetmangement_assetgrouping/AssetGrouping.js b/src/pages/assetmangement_assetgrouping/AssetGrouping.js
index e1c598d..7ccdfaa 100644
--- a/src/pages/assetmangement_assetgrouping/AssetGrouping.js
+++ b/src/pages/assetmangement_assetgrouping/AssetGrouping.js
@@ -1,29 +1,242 @@
-import {Col, Row, Tree} from "antd";
+import {Col, Form, Row, Select, Tree, Input, Button, Pagination, Space, Table} from "antd";
import Title from '../homepage/compontent/title'
+import styles from '../assetmangement_assetgrouping/AssetGrouping.less'
+import {PlusOutlined, SearchOutlined, SyncOutlined} from "@ant-design/icons";
+import {useState} from "react";
+const {Search} = Input
+
+const mockData = [
+ {
+ groupId: 'GRP-001',
+ groupName: '集团总部资产组',
+ groupLevel: '一级',
+ parentGroup: '--',
+ assetCount: 1200,
+ permissionStrategy: '管理员',
+ managementStrategy: '全权限管理+策略继承',
+ createTime: '2025-10-01',
+ },
+ {
+ groupId: 'GRP-001-1',
+ groupName: '研发中心分部',
+ groupLevel: '二级',
+ parentGroup: '集团总部资产组',
+ assetCount: 500,
+ permissionStrategy: '编辑',
+ managementStrategy: '自定义维保策略',
+ createTime: '2025-10-02',
+ },
+ {
+ groupId: 'GRP-001-2',
+ groupName: '生产车间分部',
+ groupLevel: '二级',
+ parentGroup: '集团总部资产组',
+ assetCount: 700,
+ permissionStrategy: '编辑',
+ managementStrategy: '设备巡检策略',
+ createTime: '2025-10-02',
+ },
+ {
+ groupId: 'GRP-001-1-1',
+ groupName: '研发传感器组',
+ groupLevel: '三级',
+ parentGroup: '研发中心分部',
+ assetCount: 200,
+ permissionStrategy: '查看',
+ managementStrategy: '数据采集策略',
+ createTime: '2025-10-03',
+ },
+ {
+ groupId: 'GRP-001-1-2',
+ groupName: '研发服务器组',
+ groupLevel: '三级',
+ parentGroup: '研发中心分部',
+ assetCount: 300,
+ permissionStrategy: '编辑',
+ managementStrategy: '集群管理策略',
+ createTime: '2025-10-03',
+ },
+ {
+ groupId: 'GRP-001-2-1',
+ groupName: '车间产线设备组',
+ groupLevel: '三级',
+ parentGroup: '生产车间分部',
+ assetCount: 400,
+ permissionStrategy: '编辑',
+ managementStrategy: '产线联动策略',
+ createTime: '2025-10-04',
+ },
+ {
+ groupId: 'GRP-001-2-2',
+ groupName: '车间环境监测组',
+ groupLevel: '三级',
+ parentGroup: '生产车间分部',
+ assetCount: 300,
+ permissionStrategy: '查看',
+ managementStrategy: '环境告警策略',
+ createTime: '2025-10-04',
+ },
+];
+const AssetGroupTable=()=>{
+ const [selectedRowKeys, setSelectedRowKeys] = useState([]);
+ const [currentPage, setCurrentPage] = useState(1);
+ const [pageSize, setPageSize] = useState(10); // 可根据需求调整默认每页条数
+
+ // 表格列配置
+ const columns = [
+ {
+ title: '分组ID',
+ dataIndex: 'groupId',
+ key: 'groupId',
+ },
+ {
+ title: '分组名称',
+ dataIndex: 'groupName',
+ key: 'groupName',
+ },
+ {
+ title: '分组层级',
+ dataIndex: 'groupLevel',
+ key: 'groupLevel',
+ },
+ {
+ title: '父分组',
+ dataIndex: 'parentGroup',
+ key: 'parentGroup',
+ },
+ {
+ title: '资产数量',
+ dataIndex: 'assetCount',
+ key: 'assetCount',
+ },
+ {
+ title: '权限策略',
+ dataIndex: 'permissionStrategy',
+ key: 'permissionStrategy',
+ },
+ {
+ title: '管理策略',
+ dataIndex: 'managementStrategy',
+ key: 'managementStrategy',
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ },
+ {
+ title: '操作',
+ key: 'action',
+ render: (_, record) => (
+