implemented technical deputy list table page

This commit is contained in:
2025-11-26 11:21:17 +03:30
parent 98f783ee44
commit 294ca463ff
38 changed files with 1719 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import { Box } from "@mui/material";
const TabPanel = (props) => {
const { children, value, index } = props;
return (
<div role="tabpanel" hidden={value !== index}>
{value === index && <Box>{children}</Box>}
</div>
);
};
export default TabPanel;

View File

@@ -318,7 +318,7 @@ export const pageMenuDev = [
id: "assistant",
label: "کارتابل معاون",
type: "page",
route: "/dashboard/inquiry-privacy/assistant",
route: "/dashboard/inquiry-privacy/technical-deputy",
icon: <ManageAccountsIcon sx={{ width: "inherit", height: "inherit" }} />,
permissions: ["all"],
},

View File

@@ -241,3 +241,4 @@ export const GET_INQUIRY_PRIVACY_STATE_LIST = api + "/api/v3/harim/detail/states
export const CITY_ADMIN_FEEDBACK = api + "/api/v3/harim/province_office/feedback";
export const GET_PRIVACY_ADMIN_LIST = api + "/api/v3/harim/harim_office";
export const PRIVACY_ADMIN_ACTION_API = api + "/api/v3/harim/harim_office";
export const GET_INQUIRY_PRIVACY_TABLE_LIST = api + "/api/v3/harim/technical_deputy";