From 9d732f0a9ad42a5b4b86d27a6cacdc62241895fe Mon Sep 17 00:00:00 2001 From: wyw <571921741@qq.com> Date: Sat, 28 Feb 2026 10:37:45 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E4=B8=89=E7=BA=A7=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E6=95=99=E8=82=B2=20=20=E8=80=83=E8=AF=95=E6=88=90=E7=BB=A9=20?= =?UTF-8?q?=E6=98=AF=E5=90=A6=E5=90=88=E6=A0=BC=20=E7=AD=89=20=E5=A6=82?= =?UTF-8?q?=E6=9E=9C=E4=B8=8D=E8=80=83=E8=AF=95=20=E7=BD=AE=E7=A9=BA=202?= =?UTF-8?q?=E3=80=81=E4=B8=89=E7=BA=A7=E5=AE=89=E5=85=A8=E6=95=99=E8=82=B2?= =?UTF-8?q?=E5=8D=A1=20=E6=98=BE=E7=A4=BA=20=E7=BB=86=E8=8A=82=E4=BC=98?= =?UTF-8?q?=E5=8C=96=20=EF=BC=88=E6=B2=A1=E6=97=B6=E9=97=B4=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=20=E9=94=99=E8=AF=AF=E8=8B=B1=E6=96=87=20=20=E6=B2=A1?= =?UTF-8?q?=E7=AD=BE=E5=88=B0=E4=B9=9F=E6=9C=89=E7=AD=BE=E5=90=8D=20?= =?UTF-8?q?=E7=AD=89=E7=AD=89=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CustomPages/SE/SE063ShowPrint.js | 30 ++++++++++++++----- src/files/edit/SE061.js | 7 +++++ 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/src/components/CustomPages/SE/SE063ShowPrint.js b/src/components/CustomPages/SE/SE063ShowPrint.js index 787d686..bcca1f8 100644 --- a/src/components/CustomPages/SE/SE063ShowPrint.js +++ b/src/components/CustomPages/SE/SE063ShowPrint.js @@ -1,7 +1,7 @@ import { message } from "antd/lib/index"; import { Button, Modal, Row, Col, Form, Input, Select, Table } from 'antd'; import React from 'react'; -import { initFilter, extendRule, extendInclude, setDataFieldValue, guid, GetFileModel, showFiles } from "../../../utils/common"; +import { initFilter, extendRule, extendInclude, getArryPropShow, guid, GetFileModel, showFiles } from "../../../utils/common"; import ReactToPrint from "react-to-print"; import styles from '../../CustomPages/HI/StepForm.css'; import XLSX from 'xlsx'; @@ -60,7 +60,17 @@ class SE063ShowPrint extends React.Component { let json = initFilter(this.props.login.OrgId); json.Parameter22 = this.props.data.ORG_ID_HV; let userID = this.props.data.parentRecord.USER_ID; - extendRule(json, 'USERID', 1, userID); + extendRule(json, 'USER_ID', 1, userID); + extendInclude(json, 'Nav_NewUser.Nav_Department'); + extendInclude(json, 'Nav_NewUser.Nav_Department'); + extendInclude(json, 'Nav_NewUser.Nav_User'); + extendInclude(json, 'Nav_NewUser.Nav_Content'); + extendInclude(json, 'Nav_NewUser.Nav_Files.Nav_ImgFile'); + extendInclude(json, 'Nav_NewUser.Nav_Teachers.Nav_User'); + extendInclude(json, 'Nav_User'); + extendInclude(json, 'Nav_Department'); + extendInclude(json, 'Nav_Post'); + extendInclude(json, 'Nav_Files.Nav_ImgFile'); json.IgnoreDataRule = true; this.props.dispatch({ type: 'app/getDataByPost', @@ -120,6 +130,7 @@ class SE063ShowPrint extends React.Component { } render() { const { data } = this.state; + const enums = this.props.data.enums ? this.props.data.enums : this.props.app.enums; return