From 0f2ab752fa08aa5e1b9feeac46d0cd3e65f5a58c Mon Sep 17 00:00:00 2001 From: "853931625@qq.com" Date: Mon, 18 May 2026 11:30:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=9B=B8=E5=85=B3=E6=96=B9?= =?UTF-8?q?=E8=80=83=E8=AF=84=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/hidden/index.js | 6 + src/enumerate/constant/index.js | 1 + src/enumerate/namespace/index.js | 1 + .../CompositeManage/HiddenList/index.js | 7 + .../CompositeManage/List/index.js | 7 + .../CompositeManage/ProjectList/index.js | 7 + .../CompositeManage/ReView/index.js | 7 + .../CompositeManage/ScoreList/index.js | 7 + .../BranchCompany/CompositeManage/index.js | 5 + .../EvaluationManage/HiddenList/index.js | 7 + .../EvaluationManage/List/index.js | 7 + .../EvaluationManage/ProjectList/index.js | 7 + .../EvaluationManage/ReView/index.js | 7 + .../EvaluationManage/ScoreList/index.js | 7 + .../BranchCompany/EvaluationManage/index.js | 5 + .../BranchCompany/HiddenView/index.js | 15 ++ .../CompositeManage/HiddenList/index.js | 159 ++++++++++++++ .../CompositeManage/List/index.js | 199 ++++++++++++++++++ .../CompositeManage/ProjectList/index.js | 80 +++++++ .../CompositeManage/ReView/index.js | 7 + .../CompositeManage/ScoreList/index.js | 55 +++++ .../EvaluationManage/CompositeManage/index.js | 5 + .../EvaluationManage/HiddenList/index.js | 7 + .../EvaluationManage/List/index.js | 7 + .../EvaluationManage/ProjectList/index.js | 7 + .../EvaluationManage/ReView/index.js | 7 + .../EvaluationManage/ScoreList/index.js | 7 + .../EvaluationManage/index.js | 5 + .../EvaluationManage/HiddenView/index.js | 15 ++ .../Supervision/EvaluationManage/index.js | 5 + 30 files changed, 668 insertions(+) create mode 100644 src/api/hidden/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/HiddenList/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/List/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/ProjectList/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/ReView/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/ScoreList/index.js create mode 100644 src/pages/Container/BranchCompany/CompositeManage/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/HiddenList/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/List/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/ProjectList/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/ReView/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/ScoreList/index.js create mode 100644 src/pages/Container/BranchCompany/EvaluationManage/index.js create mode 100644 src/pages/Container/BranchCompany/HiddenView/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/List/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/ReView/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/CompositeManage/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/HiddenList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/List/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ProjectList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ReView/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ScoreList/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/EvaluationManage/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/HiddenView/index.js create mode 100644 src/pages/Container/Supervision/EvaluationManage/index.js diff --git a/src/api/hidden/index.js b/src/api/hidden/index.js new file mode 100644 index 0000000..e0737c1 --- /dev/null +++ b/src/api/hidden/index.js @@ -0,0 +1,6 @@ +import { declareRequest } from "@cqsjjb/jjb-dva-runtime"; + +export const ledgerList = declareRequest( + "ledgerLoading", + "Post > @/hidden/hidden/list", +); diff --git a/src/enumerate/constant/index.js b/src/enumerate/constant/index.js index a21416d..e9c5a89 100644 --- a/src/enumerate/constant/index.js +++ b/src/enumerate/constant/index.js @@ -27,3 +27,4 @@ export const PROJECT_ONELEVEL_STATUS_MAP = [ { name: "已完成", bianma: "4" }, { name: "已驳回", bianma: "6" }, ]; +export const IS_RELATED_ENUM = [{ bianma: "1", name: "是" }, { bianma: "0", name: "否" }]; diff --git a/src/enumerate/namespace/index.js b/src/enumerate/namespace/index.js index 690603b..b88b1eb 100644 --- a/src/enumerate/namespace/index.js +++ b/src/enumerate/namespace/index.js @@ -10,3 +10,4 @@ export const NS_QUALIFICATION_REVIEW = defineNamespace("qualificationReview"); export const NS_QUALIFICATION_RECORDS = defineNamespace("qualificationRecords"); export const NS_QUALIFICATION_STATISTICS = defineNamespace("qualificationStatistics"); export const NS_QUALIFICATION_APPLY = defineNamespace("qualificationApply"); +export const NS_HIDDEN = defineNamespace("hidden"); diff --git a/src/pages/Container/BranchCompany/CompositeManage/HiddenList/index.js b/src/pages/Container/BranchCompany/CompositeManage/HiddenList/index.js new file mode 100644 index 0000000..02cbc9f --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/HiddenList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList"; + +function HiddenList(props) { + return ; +} + +export default HiddenList; diff --git a/src/pages/Container/BranchCompany/CompositeManage/List/index.js b/src/pages/Container/BranchCompany/CompositeManage/List/index.js new file mode 100644 index 0000000..b1ba08e --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/List/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/List"; + +function List(props) { + return ; +} + +export default List; diff --git a/src/pages/Container/BranchCompany/CompositeManage/ProjectList/index.js b/src/pages/Container/BranchCompany/CompositeManage/ProjectList/index.js new file mode 100644 index 0000000..a078120 --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/ProjectList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList"; + +function index(props) { + return ; +} + +export default index; diff --git a/src/pages/Container/BranchCompany/CompositeManage/ReView/index.js b/src/pages/Container/BranchCompany/CompositeManage/ReView/index.js new file mode 100644 index 0000000..2d54679 --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/ReView/index.js @@ -0,0 +1,7 @@ +import ReViewPage from "~/pages/Container/Local/ProjectReview/ProjectApproval/Submit/ReView"; + +function ReView(props) { + return ; +} + +export default ReView; diff --git a/src/pages/Container/BranchCompany/CompositeManage/ScoreList/index.js b/src/pages/Container/BranchCompany/CompositeManage/ScoreList/index.js new file mode 100644 index 0000000..4364fe9 --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/ScoreList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList"; + +function ScoreList(props) { + return ; +} + +export default ScoreList; diff --git a/src/pages/Container/BranchCompany/CompositeManage/index.js b/src/pages/Container/BranchCompany/CompositeManage/index.js new file mode 100644 index 0000000..fa72b25 --- /dev/null +++ b/src/pages/Container/BranchCompany/CompositeManage/index.js @@ -0,0 +1,5 @@ +function CompositeManage(props) { + return (
{props.children}
); +} + +export default CompositeManage; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/HiddenList/index.js b/src/pages/Container/BranchCompany/EvaluationManage/HiddenList/index.js new file mode 100644 index 0000000..02cbc9f --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/HiddenList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList"; + +function HiddenList(props) { + return ; +} + +export default HiddenList; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/List/index.js b/src/pages/Container/BranchCompany/EvaluationManage/List/index.js new file mode 100644 index 0000000..21d302a --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/List/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/List"; + +function List(props) { + return ; +} + +export default List; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/ProjectList/index.js b/src/pages/Container/BranchCompany/EvaluationManage/ProjectList/index.js new file mode 100644 index 0000000..a078120 --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/ProjectList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList"; + +function index(props) { + return ; +} + +export default index; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/ReView/index.js b/src/pages/Container/BranchCompany/EvaluationManage/ReView/index.js new file mode 100644 index 0000000..2d54679 --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/ReView/index.js @@ -0,0 +1,7 @@ +import ReViewPage from "~/pages/Container/Local/ProjectReview/ProjectApproval/Submit/ReView"; + +function ReView(props) { + return ; +} + +export default ReView; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/ScoreList/index.js b/src/pages/Container/BranchCompany/EvaluationManage/ScoreList/index.js new file mode 100644 index 0000000..4364fe9 --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/ScoreList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList"; + +function ScoreList(props) { + return ; +} + +export default ScoreList; diff --git a/src/pages/Container/BranchCompany/EvaluationManage/index.js b/src/pages/Container/BranchCompany/EvaluationManage/index.js new file mode 100644 index 0000000..0851a4f --- /dev/null +++ b/src/pages/Container/BranchCompany/EvaluationManage/index.js @@ -0,0 +1,5 @@ +function EvaluationManage(props) { + return (
{props.children}
); +} + +export default EvaluationManage; diff --git a/src/pages/Container/BranchCompany/HiddenView/index.js b/src/pages/Container/BranchCompany/HiddenView/index.js new file mode 100644 index 0000000..b71cfa4 --- /dev/null +++ b/src/pages/Container/BranchCompany/HiddenView/index.js @@ -0,0 +1,15 @@ +// import HiddenInfo from "zy-react-library/components/HiddenInfo/gwj"; +import Page from "zy-react-library/components/Page"; +import useGetUrlQuery from "zy-react-library/hooks/useGetUrlQuery"; + +function HiddenView() { + const query = useGetUrlQuery(); + + return ( + + {/**/} + + ); +} + +export default HiddenView; diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList/index.js new file mode 100644 index 0000000..f1847f2 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList/index.js @@ -0,0 +1,159 @@ +import { Permission } from "@cqsjjb/jjb-common-decorator/permission"; +import { Connect } from "@cqsjjb/jjb-dva-runtime"; +import { Button, Form, Space } from "antd"; +import dayjs from "dayjs"; +import Page from "zy-react-library/components/Page"; +import Search from "zy-react-library/components/Search"; +import DepartmentSelectTree from "zy-react-library/components/SelectTree/Department/Gwj"; +import DictionarySelectTree from "zy-react-library/components/SelectTree/Dictionary"; +import HiddenLevelSelectTree from "zy-react-library/components/SelectTree/HiddenLevel/Gwj"; +import Table from "zy-react-library/components/Table"; +import { FORM_ITEM_RENDER_ENUM } from "zy-react-library/enum/formItemRender"; +import { HIDDEN_RECTIFICATION_TYPE_ENUM, HIDDEN_SOURCE_ENUM, HIDDEN_STATE_ENUM } from "zy-react-library/enum/hidden/gwj"; +import useTable from "zy-react-library/hooks/useTable"; +import { getLabelName, getUnmatchedItems } from "zy-react-library/utils"; +import { IS_RELATED_ENUM } from "~/enumerate/constant"; +import {NS_HIDDEN} from "~/enumerate/namespace"; + +function List(props) { + const [form] = Form.useForm(); + + const { tableProps, getData } = useTable(props["ledgerList"], { + form, + usePermission:false, + useStorageQueryCriteria:false, + transform: formData => ({ + hiddenFindTime: formData.hiddenFindTime?.[0], + hiddenFindTimeLe: formData.hiddenFindTime?.[1], + state: formData.state ? [formData.state] : undefined, + hiddenLevels: ["hiddenLevel1001", "hiddenLevel1004", "hiddenLevel1002"], + }), + }); + + + return ( + + }, + { + name: "hiddenType", + label: "隐患类型", + render: , + }, + { + name: "hiddenLevel", + label: "隐患级别", + render: ( + + ), + }, + { name: "creatorName", label: "隐患发现人" }, + { + name: "state", + label: "隐患状态", + render: FORM_ITEM_RENDER_ENUM.SELECT, + items: getUnmatchedItems({ list: HIDDEN_STATE_ENUM, value: ["98", "102"] }), + }, + { name: "confirmUserName", label: "确认人" }, + { name: "rectificationUserName", label: "整改人" }, + { name: "rectificationDeptId", label: "整改部门", render: }, + { name: "checkUserName", label: "验收人" }, + { + name: "isRelated", + label: "是否相关方", + render: FORM_ITEM_RENDER_ENUM.SELECT, + items: IS_RELATED_ENUM, + }, + { + name: "isAi", + label: "是否使用AI", + render: FORM_ITEM_RENDER_ENUM.SELECT, + items: [{ bianma: "1", name: "是" }, { bianma: "0", name: "否" }], + }, + ]} + form={form} + onFinish={getData} + /> + getLabelName({ list: HIDDEN_SOURCE_ENUM, status: record.source }), + }, + { title: "隐患描述", dataIndex: "hiddenDesc" }, + { title: "隐患级别", dataIndex: "hiddenLevelName", width: 100 }, + { title: "隐患类型", dataIndex: "hiddenTypeName" }, + { title: "隐患发现部门", dataIndex: "hiddenFindDeptName", width: 180 }, + { title: "隐患发现人", dataIndex: "createName", width: 130 }, + { + title: "隐患发现时间", + dataIndex: "hiddenFindTime", + width: 180, + render: (_, record) => record.hiddenFindTime ? dayjs(record.hiddenFindTime).format("YYYY-MM-DD HH:mm:ss") : "", + }, + { + title: "整改类型", + dataIndex: "rectificationType", + width: 100, + render: (_, record) => getLabelName({ + list: HIDDEN_RECTIFICATION_TYPE_ENUM, + status: record.rectificationType, + }), + }, + { title: "确认人", dataIndex: "confirmUserName", width: 100 }, + { title: "整改人", dataIndex: "rectifyUserName", width: 100 }, + { + title: "整改时间", + dataIndex: "rectificationTime", + width: 180, + render: (_, record) => record.rectificationTime ? dayjs(record.rectificationTime).format("YYYY-MM-DD HH:mm:ss") : "", + }, + { title: "验收人", dataIndex: "hiddenYUserName", width: 100 }, + { + title: "是否相关方", + dataIndex: "isRelated", + width: 150, + render: (_, record) => getLabelName({ + list: IS_RELATED_ENUM, + status: record.isRelated, + }), + }, + { + title: "隐患状态", + dataIndex: "state", + render: (_, record) => getLabelName({ list: HIDDEN_STATE_ENUM, status: record.state }), + }, + { + title: "操作", + width: 220, + fixed: "right", + render: (_, record) => ( + + + + ), + }, + ]} + {...tableProps} + /> + + + ); +} + + + + +export default Connect([NS_HIDDEN], true)(Permission(List)); diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/List/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/List/index.js new file mode 100644 index 0000000..4ac7021 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/List/index.js @@ -0,0 +1,199 @@ +import { Permission } from "@cqsjjb/jjb-common-decorator/permission"; +import { Connect } from "@cqsjjb/jjb-dva-runtime"; +import { Button, Form, Space,message,Modal } from "antd"; +import Page from "zy-react-library/components/Page"; +import Search from "zy-react-library/components/Search"; +import DictionarySelect from "zy-react-library/components/Select/Dictionary"; +import Table from "zy-react-library/components/Table"; +import useTable from "zy-react-library/hooks/useTable"; +import { getLabelName } from "zy-react-library/utils"; +import { PROJECT_STATUS_MAP } from "~/enumerate/constant"; +import { NS_QUALIFICATION_STATISTICS } from "~/enumerate/namespace"; +import {FORM_ITEM_RENDER_ENUM} from "zy-react-library/enum/formItemRender"; +import { useState } from "react"; +import FormBuilder from "zy-react-library/components/FormBuilder"; + +function List(props) { + const [form] = Form.useForm(); + const [configModalOpen, setConfigModalOpen] = useState(false); + const [currentRecord, setCurrentRecord] = useState(null); + const { tableProps, getData } = useTable(props["inCheckList"], { + form, + transform: (formData) => { + return { + ...formData, + startTime: formData.time?.[0], + endTime: formData.time?.[1], + }; + }, + + }); + return ( + + +
( + + ) }, + { title: "已验收/隐患数", dataIndex: "manageDeptName",render:(_, record) => ( + + ) }, + { title: "处罚金处罚次数", dataIndex: "qualificationsTypeName" }, + { title: "处罚金总额(元)", dataIndex: "companyName" }, + { + title: "已缴纳金额(元)", + dataIndex: "projectStatus", + render: (_, record) => getLabelName({ list: PROJECT_STATUS_MAP, status: record.projectStatus }), + }, + { + title: "操作", + fixed: "right", + width: 150, + render: (_, record) => ( + + {/*{props.permission(props.pfbtn) && (*/} + + {/*)}*/} + {/*{props.permission(props.dflbbtn || "jgd-xgfzhkpgl-dflb") && (*/} + + {/*)}*/} + + ), + }, + ]} + {...tableProps} + /> + { + configModalOpen + && ( + { + setConfigModalOpen(false); + setCurrentRecord({}); + }} + getData={getData} + /> + ) + } + + ); +} +function AddModalComponent(props) { + const [form] = Form.useForm(); + + + const onCancel = () => { + form.resetFields(); + props.onCancel(); + }; + const onSubmit = async (values) => { + const res = await props.requestEdit(submitValues); + if (res?.success) { + onCancel(); + props.getData(); + message.success("评分成功"); + } + }; + + return ( + + +
请输入大于0的整数,不可输入小数点。满分为100分。
+
请于评分阶段后3个月内评分,如超出时间,则不可评分; 评分阶段以月为单位,请勿重复评分。
+ ) + } + ]} + /> + +
+ ); +} + +const AddModal = AddModalComponent; +export default Connect([NS_QUALIFICATION_STATISTICS], true)(Permission(List)); diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList/index.js new file mode 100644 index 0000000..6e2faf7 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList/index.js @@ -0,0 +1,80 @@ +import { Permission } from "@cqsjjb/jjb-common-decorator/permission"; +import { Connect } from "@cqsjjb/jjb-dva-runtime"; +import { Button, Descriptions, Form, Modal, Space } from "antd"; +import { useState } from "react"; +import AddIcon from "zy-react-library/components/Icon/AddIcon"; +import Page from "zy-react-library/components/Page"; +import Search from "zy-react-library/components/Search"; +import DictionarySelect from "zy-react-library/components/Select/Dictionary"; +import Table from "zy-react-library/components/Table"; +import { FORM_ITEM_RENDER_ENUM } from "zy-react-library/enum/formItemRender"; +import useTable from "zy-react-library/hooks/useTable"; +import { getLabelName } from "zy-react-library/utils"; +import { PROJECT_ONELEVEL_STATUS_MAP, PROJECT_STATUS_MAP } from "~/enumerate/constant"; +import { NS_QUALIFICATION_STATISTICS } from "~/enumerate/namespace"; + +function ProjectList(props) { + const [form] = Form.useForm(); + const { tableProps, getData } = useTable(props["inCheckList"], { + form, + usePermission:false, + useStorageQueryCriteria:false, + // params: { + // noneCompleted: props.noneCompleted ? props.noneCompleted : 2, + // }, + }); + + + return ( + + ), + }, + ]} + form={form} + onFinish={getData} + /> +
record.stakeholderLevel === "two-level" ? "二级项目" : "一级项目" }, + { title: "项目类别", dataIndex: "qualificationsTypeName" }, + { title: "项目属地单位", dataIndex: "companyName" }, + { title: "股份主管部门", dataIndex: "manageDeptName" }, + + { + title: "操作", + fixed: "right", + width: 120, + render: (_, record) => ( + + {/*{props.permission(props.ckbtn || "jgd-xgfzhkpgl-xmlb-info") && (*/} + + {/*)}*/} + + + ), + }, + ]} + {...tableProps} + /> + + + ); +} + + +export default Connect([NS_QUALIFICATION_STATISTICS], true)(Permission(ProjectList)); diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ReView/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ReView/index.js new file mode 100644 index 0000000..2d54679 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ReView/index.js @@ -0,0 +1,7 @@ +import ReViewPage from "~/pages/Container/Local/ProjectReview/ProjectApproval/Submit/ReView"; + +function ReView(props) { + return ; +} + +export default ReView; diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList/index.js new file mode 100644 index 0000000..9a354ac --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList/index.js @@ -0,0 +1,55 @@ +import { Permission } from "@cqsjjb/jjb-common-decorator/permission"; +import { Connect } from "@cqsjjb/jjb-dva-runtime"; +import { Form } from "antd"; +import Page from "zy-react-library/components/Page"; +import Search from "zy-react-library/components/Search"; +import Table from "zy-react-library/components/Table"; +import useTable from "zy-react-library/hooks/useTable"; +import { NS_QUALIFICATION_STATISTICS } from "~/enumerate/namespace"; +import {FORM_ITEM_RENDER_ENUM} from "zy-react-library/enum/formItemRender"; + +function ScoreList(props) { + const [form] = Form.useForm(); + const { tableProps, getData } = useTable(props["inCheckList"], { + form, + usePermission:false, + useStorageQueryCriteria:false, + transform: (formData) => { + return { + ...formData, + }; + }, + + }); + return ( + + +
+ + ); +} + +export default Connect([NS_QUALIFICATION_STATISTICS], true)(Permission(ScoreList)); diff --git a/src/pages/Container/Supervision/EvaluationManage/CompositeManage/index.js b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/index.js new file mode 100644 index 0000000..fa72b25 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/CompositeManage/index.js @@ -0,0 +1,5 @@ +function CompositeManage(props) { + return (
{props.children}
); +} + +export default CompositeManage; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/HiddenList/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/HiddenList/index.js new file mode 100644 index 0000000..02cbc9f --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/HiddenList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/HiddenList"; + +function HiddenList(props) { + return ; +} + +export default HiddenList; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/List/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/List/index.js new file mode 100644 index 0000000..38d4110 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/List/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/List"; + +function List(props) { + return ; +} + +export default List; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ProjectList/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ProjectList/index.js new file mode 100644 index 0000000..a078120 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ProjectList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ProjectList"; + +function index(props) { + return ; +} + +export default index; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ReView/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ReView/index.js new file mode 100644 index 0000000..2d54679 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ReView/index.js @@ -0,0 +1,7 @@ +import ReViewPage from "~/pages/Container/Local/ProjectReview/ProjectApproval/Submit/ReView"; + +function ReView(props) { + return ; +} + +export default ReView; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ScoreList/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ScoreList/index.js new file mode 100644 index 0000000..4364fe9 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/ScoreList/index.js @@ -0,0 +1,7 @@ +import ListPage from "~/pages/Container/Supervision/EvaluationManage/CompositeManage/ScoreList"; + +function ScoreList(props) { + return ; +} + +export default ScoreList; diff --git a/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/index.js b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/index.js new file mode 100644 index 0000000..0851a4f --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/EvaluationManage/index.js @@ -0,0 +1,5 @@ +function EvaluationManage(props) { + return (
{props.children}
); +} + +export default EvaluationManage; diff --git a/src/pages/Container/Supervision/EvaluationManage/HiddenView/index.js b/src/pages/Container/Supervision/EvaluationManage/HiddenView/index.js new file mode 100644 index 0000000..b71cfa4 --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/HiddenView/index.js @@ -0,0 +1,15 @@ +// import HiddenInfo from "zy-react-library/components/HiddenInfo/gwj"; +import Page from "zy-react-library/components/Page"; +import useGetUrlQuery from "zy-react-library/hooks/useGetUrlQuery"; + +function HiddenView() { + const query = useGetUrlQuery(); + + return ( + + {/**/} + + ); +} + +export default HiddenView; diff --git a/src/pages/Container/Supervision/EvaluationManage/index.js b/src/pages/Container/Supervision/EvaluationManage/index.js new file mode 100644 index 0000000..0851a4f --- /dev/null +++ b/src/pages/Container/Supervision/EvaluationManage/index.js @@ -0,0 +1,5 @@ +function EvaluationManage(props) { + return (
{props.children}
); +} + +export default EvaluationManage;