Commit c8a8c3d5 authored by MrShi's avatar MrShi

业主模块修改

parent 8bf95522
...@@ -80,7 +80,7 @@ export default defineConfig({ ...@@ -80,7 +80,7 @@ export default defineConfig({
name: 'usemanagement', name: 'usemanagement',
icon:'ProfileOutlined', icon:'ProfileOutlined',
routes: [ routes: [
/* { {
path: './LIFEUserManagement', path: './LIFEUserManagement',
name: 'lifeusers', name: 'lifeusers',
routes: [ routes: [
...@@ -89,8 +89,8 @@ export default defineConfig({ ...@@ -89,8 +89,8 @@ export default defineConfig({
{ path: './Detail', component: './UserManagement/LIFEUserManagement/UsersDetail' }, { path: './Detail', component: './UserManagement/LIFEUserManagement/UsersDetail' },
{ path: './Edit', component: './UserManagement/LIFEUserManagement/UsersDetail' }, { path: './Edit', component: './UserManagement/LIFEUserManagement/UsersDetail' },
] ]
},*/ },
{ /* {
path: './tosUser', path: './tosUser',
name: 'lifeusers', name: 'lifeusers',
routes: [ routes: [
...@@ -100,7 +100,7 @@ export default defineConfig({ ...@@ -100,7 +100,7 @@ export default defineConfig({
{ path: './edit', component: './UserManagement/tosUser/TosUserEdit' }, { path: './edit', component: './UserManagement/tosUser/TosUserEdit' },
{ path: './details', component: './UserManagement/tosUser/TosUserDetails' }, { path: './details', component: './UserManagement/tosUser/TosUserDetails' },
] ]
}, },*/
{ {
path: './ServiceProviderManagement', path: './ServiceProviderManagement',
name: 'serviceproviders', name: 'serviceproviders',
...@@ -113,7 +113,7 @@ export default defineConfig({ ...@@ -113,7 +113,7 @@ export default defineConfig({
{ path: './Guard', component: './UserManagement/ServiceProviderManagement/Guard'} { path: './Guard', component: './UserManagement/ServiceProviderManagement/Guard'}
]}, ]},
{ path: './Edit', component: './UserManagement/ServiceProviderManagement/Edit' }, { path: './Edit', component: './UserManagement/ServiceProviderManagement/Edit' },
{path:'./Services',component:'./UserManagement/ServiceProviderManagement/Services'}, { path:'./Services',component:'./UserManagement/ServiceProviderManagement/Services'},
] ]
}, },
] ]
...@@ -259,7 +259,7 @@ export default defineConfig({ ...@@ -259,7 +259,7 @@ export default defineConfig({
path: './FacilityBookings', path: './FacilityBookings',
name: 'facilitybookings', name: 'facilitybookings',
routes: [ routes: [
{ path: "./", component: './CommunityManagement/FacilityBookings/FacilityBookings' }, { path: "./", component: './CommunityManagement/FacilityBookings/FacilityBookings' },
{ path: "./Booking", component: './CommunityManagement/FacilityBookings/Bookings' }, { path: "./Booking", component: './CommunityManagement/FacilityBookings/Bookings' },
{ path: "./Detail", component: './CommunityManagement/FacilityBookings/BookingDetail' }, { path: "./Detail", component: './CommunityManagement/FacilityBookings/BookingDetail' },
{ path: "./Adding", component: './CommunityManagement/FacilityBookings/Facility' }, { path: "./Adding", component: './CommunityManagement/FacilityBookings/Facility' },
......
...@@ -547,7 +547,7 @@ class TosUser extends React.Component { ...@@ -547,7 +547,7 @@ class TosUser extends React.Component {
dataIndex: 'enable', dataIndex: 'enable',
key: 'enable', key: 'enable',
render: (text, record) => ( render: (text, record) => (
<span>{record.enable == '1' ? "注册" : "未注册"}</span> <span>{record.enable == '0' ? "未注册" :(record.enable == '1' ? '注册' :'注销')}</span>
), ),
/* render: (text, record) => ( /* render: (text, record) => (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment