diff --git a/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.js b/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.js
index 37cbdf4..ee14763 100644
--- a/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.js
+++ b/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.js
@@ -552,7 +552,7 @@ const EnvironmentalPersonnelManagement = () => {
onClose={handleCloseDrawer}
open={drawerVisible}
width={600}
- closable={true}
+ closable={false}
bodyStyle={{ fontSize: '12px' }}
>
{selectedRecord && (
@@ -675,13 +675,15 @@ const EnvironmentalPersonnelManagement = () => {
,
@@ -692,45 +694,103 @@ const EnvironmentalPersonnelManagement = () => {
form={form}
layout="vertical"
style={{ marginTop: '20px' }}
+ className={styles.formInput}
>
-
- {/* 左侧列 */}
-
+ {/* 第一行:姓名 + 出生日期 */}
+
+ {/* 第二行:工号 + 入职时间 */}
+
+ {/* 第三行:部门 + 身份证号 */}
+
+
+ 部门
部门}
name="department"
rules={[{ required: true, message: '请选择部门' }]}
+ style={{ margin: 0, flex: 1 }}
>
-
+
+
+ 身份证号
+
+
+
+
+
+ {/* 第四行:岗位 + 联系方式 */}
+
+
+ 岗位
岗位}
name="position"
rules={[{ required: true, message: '请选择岗位' }]}
+ style={{ margin: 0, flex: 1 }}
>
-
+
污水运行
污水化验
环境监测
@@ -738,96 +798,60 @@ const EnvironmentalPersonnelManagement = () => {
安全员
+
+
+ 联系方式
+
+
+
+
+
+ {/* 第五行:性别 + 照片 */}
+
- {/* 照片上传 */}
- 照片}
- name="photo"
- >
- false}
- >
-
-
-
-
-
+ {/* 第六行:住址 */}
+
+ 住址
+
+
+
+
{/* 岗位职责 */}
{
@@ -850,7 +874,7 @@ const EnvironmentalPersonnelManagement = () => {
@@ -858,203 +882,141 @@ const EnvironmentalPersonnelManagement = () => {
{/* 编辑抽屉 */}
编辑}
placement="right"
onClose={handleCloseEditDrawer}
open={editDrawerVisible}
width={600}
- closable={true}
+ closable={false}
destroyOnClose={true}
+ bodyStyle={{ fontSize: '12px' }}
footer={[
,
]}
>
-
);
diff --git a/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.less b/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.less
index 3c7d3cd..744c04b 100644
--- a/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.less
+++ b/src/pages/business_envInformation/module/EnvironmentalPersonnelManagement.less
@@ -1,6 +1,25 @@
+// 表单输入框样式
+.formInput {
+ :global(.ant-input) {
+ color: #333333 !important;
+ font-size: 12px !important;
+ }
+
+ :global(.ant-select-selector) {
+ color: #333333 !important;
+ font-size: 12px !important;
+ }
+
+ :global(.ant-picker-input input) {
+ color: #333333 !important;
+ font-size: 12px !important;
+ }
+}
+
+
.Rcontainer {
padding: 8px 6px 0px 6px;
height: 100%;