import { MyPageContainer } from '@/common'; import { Tabs } from 'antd'; import CarPortFee from './components/CarPortFee'; import ElectricityFee from './components/ElectricityFee'; import MaintenanceFund from './components/MaintenanceFund'; import PropertyFee from './components/PropertyFee'; import SharedElectricityFee from './components/SharedElectricityFee'; import SharedWaterFee from './components/SharedWaterFee'; import WaterFee from './components/WaterFee'; export default function Index({ title = '收费标准配置' }) { const items = [ { key: 'PropertyFee', label: '物业费', children: , }, { key: 'WaterFee', label: '水费', children: , }, { key: 'ElectricityFee', label: '电费', children: , }, { key: 'SharedWaterFee', label: '公摊水费', children: , }, { key: 'SharedElectricityFee', label: '公摊电费', children: , }, { key: 'MaintenanceFund', label: '维修基金', children: , }, { key: 'CarPortFee', label: '车位管理费', children: , }, ]; return ( ); }