From fe0aea869766a2dbf496c92aa624bef540974e9d Mon Sep 17 00:00:00 2001
From: wyw <571921741@qq.com>
Date: Thu, 28 Aug 2025 13:34:58 +0800
Subject: [PATCH 1/5] 123
---
src/config.js | 8 ++++----
src/services/login.js | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/config.js b/src/config.js
index 3e320b7..51fe493 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,8 +1,8 @@
const getServiceHost = api => {
- const apimodules = [{ OP: 3116 }, { BD: 3101 }, { DD: 3102 }, { EA: 3103 }, { ED: 3104 }, { EM: 3105 }, { FC: 3106 },
- { FM: 3107 }, { KR: 3108 }, { LG: 3109 }, { MR: 3110 }, { NW: 3111 }, { PF: 3112 }, { PM: 3113 }, { QC: 3114 }, { FW: 3115 }, { OP: 3116 },
- { HM: 3117 }, { PP: 3118 }, { FO: 3119 }, { UT: 3177 }, { BS: 3178 }, { SC: 3179 }, { TI: 3179 }, { SE: 3179 }, { AE: 3179 }, { PT: 3179 }, { LR: 3179 }, { OG: 3179 }, { PE: 3179 }, { OH: 3179 }, { CM: 3179 }, { PR: 3179 }, { DM: 3179 }, { BI: 3179 }, { TL: 3179 }, { WB: 3179 }, { PC: 3179 }, { SK: 3180 }]
- let port = 3112
+ const apimodules = [{ OP: 5116 }, { BD: 5101 }, { DD: 5102 }, { EA: 5103 }, { ED: 5104 }, { EM: 5105 }, { FC: 5106 },
+ { FM: 5107 }, { KR: 5108 }, { LG: 5109 }, { MR: 5110 }, { NW: 5111 }, { PF: 5112 }, { PM: 5113 }, { QC: 5114 }, { FW: 5115 }, { OP: 5116 },
+ { HM: 5117 }, { PP: 5118 }, { FO: 5119 }, { UT: 5177 }, { BS: 5178 }, { SC: 5179 }, { TI: 5179 }, { SE: 5179 }, { AE: 5179 }, { PT: 5179 }, { LR: 5179 }, { OG: 5179 }, { PE: 5179 }, { OH: 5179 }, { CM: 5179 }, { PR: 5179 }, { DM: 5179 }, { BI: 5179 }, { TL: 5179 }, { WB: 5179 }, { PC: 5179 }, { SK: 5180 }]
+ let port = 5112
for (let i = 0; i < apimodules.length; i++) {
const apimodule = apimodules[i]
const key = Object.keys(apimodule)[0]
diff --git a/src/services/login.js b/src/services/login.js
index be078ec..3ca9ff3 100644
--- a/src/services/login.js
+++ b/src/services/login.js
@@ -4,7 +4,7 @@ export function getOrg(params) { // 获取组织列表(service)
return httpPost('OP/TenantInfo/GetOrgList', params)
}
-export function getToken(params) { // 获取Token(service)
+export function getToken(params) { // 获取Token(service) PF
return httpPost('Token/Gen', params, false)
}
From 682ea3333e9241a5f9cf1fcc63df590e32626c1b Mon Sep 17 00:00:00 2001
From: wyw <571921741@qq.com>
Date: Mon, 1 Sep 2025 16:07:20 +0800
Subject: [PATCH 2/5] 12
---
.../CustomPages/FM/UserEditPageAuth.js | 797 ++++++++++++++++++
src/config.js | 34 +-
src/files/list/FM008.js | 23 +
src/utils/customConfig.js | 5 +
src/utils/customConfig1.js | 5 +
5 files changed, 847 insertions(+), 17 deletions(-)
create mode 100644 src/components/CustomPages/FM/UserEditPageAuth.js
diff --git a/src/components/CustomPages/FM/UserEditPageAuth.js b/src/components/CustomPages/FM/UserEditPageAuth.js
new file mode 100644
index 0000000..e227069
--- /dev/null
+++ b/src/components/CustomPages/FM/UserEditPageAuth.js
@@ -0,0 +1,797 @@
+import React from 'react'
+import { connect } from 'dva'
+import { Button, Row, Col, Form, Input, Select, Transfer, message, Upload, Icon, Modal, DatePicker, Checkbox } from 'antd'
+import {
+ extend,
+ extendRule,
+ initFilter,
+ getOnlyPropertyData,
+ extendInclude,
+ setDataFieldValue,
+ getPropertyData,
+ guid
+} from '../../../utils/common'
+import moment from 'moment'
+import DropDownPagination from '../../common/DropDownPaginationEx'
+import config from '../../../config'
+import classNames from 'classnames'
+import styles from '../../../baseComponents/Component.css'
+import storage from '../../../utils/storage'
+import FormPage from '../../FormPage';
+import MultiSelectPagination from "../../common/MultiSelectPagination";
+const Option = Select.Option
+const { TextArea } = Input
+const CheckboxGroup = Checkbox.Group
+class UserEditPageAuth extends React.Component {
+ // UserEditPage 复制过来处理授权问题
+ constructor(props) {
+ super(props)
+ this.state = {
+ data: {
+ PASSWORD: 'E10ADC3949BA59ABBE56E057F20F883E', // 默认密码为123456
+ },
+ btns: [],
+ userGroupTargetKeys: [],
+ roleTargetKeys: [],
+ roleGroupTargetKeys: [],
+ disabled: true,
+ SignaturePhoto: ""
+ }
+
+ };
+
+ componentDidMount() {
+ this.props.form.resetFields()
+ this.loadData()
+ };
+
+ componentWillReceiveProps(NextProps) {
+ const { data } = this.props
+ let { id } = data ? data : {}
+ if (!id)
+ id = ''
+ if (NextProps.custom['userEditClick' + id]) {
+ this.props.form.resetFields()
+ this.props.dispatch({
+ type: 'custom/save',
+ payload: {
+ ['userEditClick' + id]: false
+ },
+ })
+ this.loadData()
+ }
+ }
+
+ loadDataSource = (orgId) => {
+ const { dispatch } = this.props
+ const userGroupJson = initFilter(orgId, '', 'CODE', 1)
+ extendRule(userGroupJson, 'ENABLE_STATUS', 1, 0)
+ userGroupJson.OrgType = 1
+ dispatch({
+ type: 'FMBase/getUserGroupDatasource',
+ payload: userGroupJson,
+ })
+ const roleJson = initFilter(orgId, '', 'CODE', 1)
+ extendRule(roleJson, 'ENABLE_STATUS', 1, 0)
+ roleJson.OrgType = 1
+ dispatch({
+ type: 'FMBase/getRoleDatasource',
+ payload: roleJson,
+
+ })
+ const roleGroupJson = initFilter(orgId, '', 'CODE', 1)
+ extendRule(roleGroupJson, 'ENABLE_STATUS', 1, 0)
+ roleGroupJson.OrgType = 1
+ dispatch({
+ type: 'FMBase/getRoleGroupDatasource',
+ payload: roleGroupJson,
+ })
+ };
+ loadData = () => {
+ const { data, formId, login } = this.props
+ const { id } = data || {}
+
+ if (id) {
+ const userJson = initFilter(this.props.login.OrgId)
+ extendRule(userJson, 'ID', 1, id)
+ extendInclude(userJson, 'Nav_Department')
+ extendInclude(userJson, 'Nav_ApproveRole')
+ extendInclude(userJson, 'Nav_Person.Nav_TeamPersons.Nav_Team')
+ extendInclude(userJson, 'Nav_Person.Nav_Post')
+ extendInclude(userJson, 'Nav_BelongRoles')
+ // extendInclude(userJson, 'Nav_BelongRoleGroups')
+ // extendInclude(userJson, 'Nav_BelongUserGroups')
+ // extendInclude(userJson, 'Nav_UserPhotoFiles')
+ extendInclude(userJson, 'Nav_UserPhotoFiles.Nav_ImgFile')
+ extendInclude(userJson, 'Nav_UserSignFiles.Nav_ImgFile')
+ extendInclude(userJson, 'Nav_ProdutionUnit.Nav_Enums')
+ this.props.dispatch({
+ type: 'FMUserEdit/getUser',
+ payload: userJson,
+ onComplete: (ret) => {
+ if (ret) {
+ ret.ID_CARD_SHOW = ret.ID_CARD
+ if (ret.ID_CARD_SHOW != null && ret.ID_CARD_SHOW.length > 1) {
+ ret.ID_CARD_SHOW = ret.ID_CARD_SHOW.replace(/^(.{5})(?:\d+)(.{2})$/, "$1***********$2")
+ }
+ let userGroup = []
+ let role = []
+ let roleGroup = []
+ if (ret.Nav_BelongRoles) {
+ ret.Nav_BelongRoles.forEach(item => {
+ role.push(item.BELONG_ROLE_ID.toString().toUpperCase())
+ })
+ }
+ if (ret.Nav_BelongRoleGroups) {
+ ret.Nav_BelongRoleGroups.forEach(item => {
+ roleGroup.push(item.BELONG_ROLE_GROUP_ID.toString().toUpperCase())
+ })
+ }
+
+ if (ret.Nav_BelongUserGroups) {
+ ret.Nav_BelongUserGroups.forEach(item => {
+ userGroup.push(item.BELONG_USER_GROUP_ID.toString().toUpperCase())
+ })
+ }
+
+ this.loadDataSource(ret.ORG_ID)
+ this.fillData(ret)
+ this.fillSignData(ret)
+ this.setState({
+ data: ret,
+ userGroupTargetKeys: userGroup,
+ roleTargetKeys: role,
+ roleGroupTargetKeys: roleGroup,
+ disabled: true,
+ SignaturePhoto: (ret?.FILE_PATH) ? (config.picServerHost + ret.FILE_PATH) : '',
+ })
+ }
+ }
+ })
+ }
+ else {
+ this.props.form.resetFields()
+ this.loadDataSource(login.OrgId)
+
+ this.setState({
+ data: {
+ ...this.state.data,
+ ORG_ID: this.props.login.OrgId,
+ ENABLE_STATUS: 0,
+ ID: guid(),
+ Nav_Person: {
+ Nav_TeamPersons: [],
+ Nav_Post: {}
+ },
+ },
+ disabled: false,
+ })
+ const { form, } = this.props
+ const { setFieldsValue } = form
+ if (this.props.login.OrgCode) {
+ setFieldsValue({
+ CODE: (this.props.login.OrgCode),
+ })
+ }
+ }
+ if (formId) {
+ const btnJson = initFilter(this.props.login.OrgId, '', 'NUM', 0)
+ extendRule(btnJson, 'PAGE_CUSTOM_FORM_ID', 1, formId)
+ this.props.dispatch({
+ type: 'FMUserEdit/getBtnList',
+ payload: btnJson,
+ onComplete: (ret) => {
+ if (ret) {
+ this.setState({
+ btns: ret,
+ })
+ }
+ }
+ })
+ }
+
+
+ };
+
+ fillData = (ret) => {
+ const updateLoadFileList = []
+ if (ret.Nav_UserPhotoFiles) {
+ ret.Nav_UserPhotoFiles.forEach(t => {
+ updateLoadFileList.push({
+ uid: t.ID,
+ name: t.Nav_ImgFile ? t.Nav_ImgFile.FILE_NAME : '未知文件',
+ status: 'done',
+ response: { Data: { imgFileID: t.IMG_FILE_ID }, file: t },
+ })
+ })
+ }
+ this.setState({
+ updateLoadFileList: updateLoadFileList,
+ })
+ }
+
+ fillSignData = (ret) => {
+ const updateLoadSignFileList = []
+ if (ret.Nav_UserSignFiles) {
+ ret.Nav_UserSignFiles.forEach(t => {
+ updateLoadSignFileList.push({
+ uid: t.ID,
+ name: t.Nav_ImgFile ? t.Nav_ImgFile.FILE_NAME : '未知文件',
+ status: 'done',
+ response: { Data: { imgFileID: t.IMG_FILE_ID }, file: t },
+ })
+ })
+ }
+ this.setState({
+ updateLoadSignFileList: updateLoadSignFileList,
+ })
+ }
+ saveAuth = () => {
+ debugger
+ const { form, dispatch, data } = this.props
+ const { validateFieldsAndScroll } = form
+ const { updateLoadFileList, updateLoadSignFileList } = this.state
+ this.state.data.FILE_PATH = this.state.SignaturePhoto.replace(config.picServerHost, '')
+
+ validateFieldsAndScroll((errors, values) => {
+ if (errors) return
+ extend(this.state.data, values)
+ let updateData = getOnlyPropertyData(this.state.data)
+ const ret = this.state.data
+ if (values.ID_CARD_SHOW != null && values.ID_CARD_SHOW != '' && values.ID_CARD_SHOW.indexOf('*') < 0 && (ret.ID_CARD == null || ret.ID_CARD != values.ID_CARD_SHOW)) {
+ ret.ID_CARD = values.ID_CARD_SHOW
+ updateData.ID_CARD = values.ID_CARD_SHOW
+ }
+ let personTeam = getPropertyData(this.state.data.Nav_Person);
+ let userGroup = []
+ let role = []
+ let roleGroup = []
+ let userPhoto = []
+ let userSign = []
+ if (updateLoadFileList) {
+ updateLoadFileList.forEach(item => {
+ if (item.response && item.response.Data) {
+ userPhoto.push({ IMG_FILE_ID: item.response.Data.imgFileID, ORG_ID: updateData.ORG_ID, USER_ID: updateData.ID })
+ }
+ })
+ }
+ if (updateLoadSignFileList) {
+ updateLoadSignFileList.forEach(item => {
+ if (item.response && item.response.Data) {
+ userSign.push({ IMG_FILE_ID: item.response.Data.imgFileID, ORG_ID: updateData.ORG_ID, USER_ID: updateData.ID })
+ }
+ })
+ }
+ if (this.state.roleTargetKeys) {
+ this.state.roleTargetKeys.forEach(item => {
+ let isGet = false
+ if (ret.Nav_BelongRoles) {
+ ret.Nav_BelongRoles.forEach(t => {
+ if (t.BELONG_ROLE_ID.toString().toUpperCase() == item) {
+ role.push(t)
+ isGet = true
+ }
+ })
+ }
+ if (!isGet) {
+ role.push({ BELONG_ROLE_ID: item, ORG_ID: updateData.ORG_ID })
+ }
+ })
+ }
+
+ if (this.state.userGroupTargetKeys) {
+ this.state.userGroupTargetKeys.forEach(item => {
+ let isGet = false
+ if (ret.Nav_BelongUserGroups) {
+ ret.Nav_BelongUserGroups.forEach(t => {
+ if (t.BELONG_USER_GROUP_ID.toString().toUpperCase() == item) {
+ userGroup.push(t)
+ isGet = true
+ }
+ })
+ }
+ if (!isGet) {
+ userGroup.push({ BELONG_USER_GROUP_ID: item, ORG_ID: updateData.ORG_ID })
+ }
+ })
+ }
+
+
+ if (this.state.roleGroupTargetKeys) {
+ this.state.roleGroupTargetKeys.forEach(item => {
+ let isGet = false
+ if (ret.Nav_BelongRoleGroups) {
+ ret.Nav_BelongRoleGroups.forEach(t => {
+ if (t.BELONG_ROLE_GROUP_ID.toString().toUpperCase() == item) {
+ roleGroup.push(t)
+ isGet = true
+ }
+ })
+ }
+ if (!isGet) {
+ roleGroup.push({ BELONG_ROLE_GROUP_ID: item, ORG_ID: updateData.ORG_ID })
+ }
+ })
+ }
+
+ updateData['Nav_BelongRoles'] = role
+ updateData['Nav_BelongUserGroups'] = userGroup
+ updateData['Nav_BelongRoleGroups'] = roleGroup
+ // updateData['Nav_UserPhotoFiles'] = userPhoto
+ // updateData['Nav_UserSignFiles'] = userSign
+ // updateData['Nav_Person'] = personTeam;
+ dispatch({
+ // type: 'FMUserEdit/updateUserAuth',
+ // //type: 'FMUserEdit/updateUser',
+ // payload: updateData,
+
+ type: 'app/getDataByPost',
+ payload: updateData,
+ url: 'FM/User/UpdateAuth',
+ onComplete: (ret) => {
+ if (ret) {
+ if (data.close) {
+ data.close()
+ }
+ message.success('执行成功')
+ }
+ }
+ })
+
+ // if (data && data.length > 0) {
+ // let json = initFilter(this.props.login.OrgId, record.ID);
+ // this.props.dispatch({
+ // type: 'app/getDataByPost',
+ // payload: json,
+ // url: 'FM/User/GetProductionUnit',
+ // onComplete: (ret) => {
+ // if (ret) {
+ // this.setState({
+ // data: {
+ // ...this.state.data,
+ // MineType: ret.MineType
+ // }
+ // })
+ // }
+ // }
+ // });
+ // this.setState({
+ // data: {
+ // ...this.state.data,
+ // DEPARTMENT_ID: data[0],
+ // Nav_Department: { NAME: record.NAME },
+ // }
+ // })
+ // }
+ // else {
+ // this.setState({
+ // data: {
+ // ...this.state.data,
+ // Nav_Department: { NAME: null },
+ // DEPARTMENT_ID: null,
+ // }
+ // })
+ // };
+
+ })
+ };
+
+ handleSopClick = async function (recordId, ids) {
+ await this.props.dispatch({
+ type: 'custom/save',
+ payload: {
+ ['sopViewClick' + recordId]: true,
+ },
+ });
+ };
+
+ handleSopShowModal = (file) => {
+ this.setState({
+ sopData: { ids: file.response.Data.imgFileID, id: file.response.Data.imgFileID },
+ sopVisible: true
+ }, () => {
+ this.handleSopClick(file.response.Data.imgFileID, file.response.Data.imgFileID);
+ });
+ };
+ handleSopCloseModal = () => {
+ this.setState({
+ sopVisible: false
+ });
+ };
+
+ render() {
+ const { form } = this.props
+ const { getFieldDecorator } = form
+
+ const handleRoleChange = (nextTargetKeys, direction, moveKeys) => {
+ this.setState({ roleTargetKeys: nextTargetKeys })
+ }
+ const formItemLayout = {
+ labelCol: { span: 6 },
+ wrapperCol: { span: 18 },
+ }
+ const onSelectDepartment = ({ data, record }) => {
+
+ if (data && data.length > 0) {
+ let json = initFilter(this.props.login.OrgId, record.ID);
+ this.props.dispatch({
+ type: 'app/getDataByPost',
+ payload: json,
+ url: 'FM/User/GetProductionUnit',
+ onComplete: (ret) => {
+ if (ret) {
+ this.setState({
+ data: {
+ ...this.state.data,
+ MineType: ret.MineType
+ }
+ })
+ }
+ }
+ });
+ this.setState({
+ data: {
+ ...this.state.data,
+ DEPARTMENT_ID: data[0],
+ Nav_Department: { NAME: record.NAME },
+ }
+ })
+ }
+ else {
+ this.setState({
+ data: {
+ ...this.state.data,
+ Nav_Department: { NAME: null },
+ DEPARTMENT_ID: null,
+ }
+ })
+ };
+ }
+ const onSelectApproveRole = ({ data, record }) => {
+
+ if (data && data.length > 0) {
+ this.setState({
+ data: {
+ ...this.state.data,
+ APPROVE_ROLE_ID: data[0],
+ Nav_ApproveRole: { NAME: record.NAME }
+ }
+ })
+ }
+ else {
+ this.setState({
+ data: {
+ ...this.state.data,
+ Nav_ApproveRole: { NAME: null },
+ APPROVE_ROLE_ID: null,
+ }
+ })
+ };
+ }
+ const onSelectPost = ({ data, record }) => {
+ var tmpData = { ...this.state.data };
+ if (data && data.length > 0) {
+ tmpData.Nav_Person.Post_ID = data[0];
+ tmpData.Nav_Person.Nav_Post = { NAME: record.NAME };
+
+ }
+ else {
+ tmpData.Nav_Person.Post_ID = '';
+ tmpData.Nav_Person.Nav_Post = { NAME: '' };
+ };
+ this.setState({
+ data: tmpData
+ })
+ }
+ const onSelectPerson = ({ data, record }) => {
+ if (data && data.length > 0) {
+ this.setState({
+ data: {
+ ...this.state.data,
+ PERSON_ID: data[0],
+ Nav_Person: { NAME: record.NAME }
+ }
+ })
+ }
+ else {
+ this.setState({
+ data: {
+ ...this.state.data,
+ Nav_Person: { NAME: null },
+ PERSON_ID: null,
+ }
+ })
+ };
+ }
+
+ const onSelectTeam = (value) => {
+ var tmpData = { ...this.state.data }
+ setDataFieldValue(tmpData, 'Nav_Person.Nav_TeamPersons', value)
+ this.setState({
+ data: tmpData,
+ });
+ }
+ const onSelectProduction = (value) => {
+ var tmpData = { ...this.state.data }
+ setDataFieldValue(tmpData, 'Nav_ProdutionUnit', value)
+ this.setState({
+ data: tmpData,
+ });
+ }
+ const onUnitChange = (value) => {
+ var tmpData = { ...this.state.data }
+ if (value.length == 0) {
+ setDataFieldValue(tmpData, 'MineType', value.toString())
+ }
+ else {
+ setDataFieldValue(tmpData, 'MineType', tmpData.MineType + "," + value.toString())
+ }
+ this.setState({
+ data: tmpData,
+ });
+ }
+ const onChange = (field, value,) => {
+ const data = { ...this.state.data };
+ data[field] = value;
+ this.setState({
+ data: data,
+ });
+ }
+
+ const that = this
+ const Tenant = storage('lacal').getItem('Tenant').val
+ const uploadSopProps = {
+ name: 'file',
+ action: config.serviceHost('api/PF/File/UploadFileToImage'),
+ data: { OrgId: this.props.login.OrgId, IsSaveSelf: true },
+ fileList: this.state.updateLoadFileList,
+ headers: {
+ Tenant: Tenant,
+ },
+ onPreview: function (file) {
+ that.handleSopShowModal(file);
+ },
+ onChange(info) {
+ that.setState({
+ updateLoadFileList: info.fileList,
+ })
+ if (info.file.status === 'done') {
+ message.success(`${info.file.name} file uploaded successfully`)
+ } else if (info.file.status === 'error') {
+ message.error(`${info.file.name} file upload failed.`)
+ }
+ },
+ }
+
+ const uploadSingProps = {
+ name: 'file',
+ action: config.serviceHost('api/PF/File/UploadFileToImage'),
+ data: { OrgId: this.props.login.OrgId, IsSaveSelf: true, USER_ID: this.props.data.id },
+ fileList: this.state.updateLoadSignFileList,
+ headers: {
+ Tenant: Tenant,
+ },
+ onPreview: function (file) {
+ that.handleSopShowModal(file);
+ },
+ onChange(info) {
+ that.setState({
+ updateLoadSignFileList: info.fileList,
+ SignaturePhoto: config.picServerHost + info?.file?.response?.Data.imgFilePath
+ })
+ if (info.file.status === 'done') {
+ // console.log(that.state)
+ message.success(`${info.file.name} file uploaded successfully`)
+ } else if (info.file.status === 'error') {
+ message.error(`${info.file.name} file upload failed.`)
+ }
+ },
+ }
+ return (
+
+ )
+ }
+}
+
+export default connect(({ login, FMBase, custom, app }) => ({ login, FMBase, custom, app }))(Form.create()(UserEditPageAuth))
diff --git a/src/config.js b/src/config.js
index 51fe493..cfadf85 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,8 +1,8 @@
const getServiceHost = api => {
- const apimodules = [{ OP: 5116 }, { BD: 5101 }, { DD: 5102 }, { EA: 5103 }, { ED: 5104 }, { EM: 5105 }, { FC: 5106 },
- { FM: 5107 }, { KR: 5108 }, { LG: 5109 }, { MR: 5110 }, { NW: 5111 }, { PF: 5112 }, { PM: 5113 }, { QC: 5114 }, { FW: 5115 }, { OP: 5116 },
- { HM: 5117 }, { PP: 5118 }, { FO: 5119 }, { UT: 5177 }, { BS: 5178 }, { SC: 5179 }, { TI: 5179 }, { SE: 5179 }, { AE: 5179 }, { PT: 5179 }, { LR: 5179 }, { OG: 5179 }, { PE: 5179 }, { OH: 5179 }, { CM: 5179 }, { PR: 5179 }, { DM: 5179 }, { BI: 5179 }, { TL: 5179 }, { WB: 5179 }, { PC: 5179 }, { SK: 5180 }]
- let port = 5112
+ const apimodules = [{ OP: 3116 }, { BD: 3101 }, { DD: 3102 }, { EA: 3103 }, { ED: 3104 }, { EM: 3105 }, { FC: 3106 },
+ { FM: 3107 }, { KR: 3108 }, { LG: 3109 }, { MR: 3110 }, { NW: 3111 }, { PF: 3112 }, { PM: 3113 }, { QC: 3114 }, { FW: 3115 }, { OP: 3116 },
+ { HM: 3117 }, { PP: 3118 }, { FO: 3119 }, { UT: 3177 }, { BS: 3178 }, { SC: 3179 }, { TI: 3179 }, { SE: 3179 }, { AE: 3179 }, { PT: 3179 }, { LR: 3179 }, { OG: 3179 }, { PE: 3179 }, { OH: 3179 }, { CM: 3179 }, { PR: 3179 }, { DM: 3179 }, { BI: 3179 }, { TL: 3179 }, { WB: 3179 }, { PC: 3179 }, { SK: 3180 }]
+ let port = 3112
for (let i = 0; i < apimodules.length; i++) {
const apimodule = apimodules[i]
const key = Object.keys(apimodule)[0]
@@ -22,7 +22,7 @@ const config = {
return `http://localhost:${apis}`
},
cookieDomain: "",
- flowServiceHost: "http://120.25.146.51:3188/",
+ flowServiceHost: "http://120.25.146.31:3188/",
hmiUrl: "http://localhost:8060/",
webSocketHost: 'ws://localhost:3140/',
picServerHost: 'http://localhost:3199',
@@ -35,14 +35,14 @@ const config = {
cloud: {
serviceHost: api => {
const apis = getServiceHost(api)
- return `http://120.25.146.51:${apis}`
+ return `http://120.25.146.31:${apis}`
},
- flowServiceHost: "http://120.25.146.51:3188",
+ flowServiceHost: "http://120.25.146.31:3188",
cookieDomain: "",
- hmiUrl: "http://120.25.146.51:8098/",
- webSocketHost: 'ws://120.25.146.51:3140/',
- picServerHost: 'http://120.25.146.51:3199',
- dataVUrl: "http://120.25.146.51:3167/home",
+ hmiUrl: "http://120.25.146.31:8098/",
+ webSocketHost: 'ws://120.25.146.31:3140/',
+ picServerHost: 'http://120.25.146.31:3199',
+ dataVUrl: "http://120.25.146.31:3167/home",
version: version,
guideSeverHost: "http://www.xmmhe.com/apk/",
guideH5Host: "http://www.xmmhe.com:9100/",
@@ -68,22 +68,22 @@ const config = {
let env = ""
switch (window.location.host) {
- case "120.25.146.51":
+ case "120.25.146.31":
env = "cloud"
break
- case "120.25.146.51:8001":
+ case "120.25.146.31:8001":
env = "cloud"
break
- case "120.25.146.51:8002":
+ case "120.25.146.31:8002":
env = "cloud"
break
- case "120.25.146.51:8003":
+ case "120.25.146.31:8003":
env = "cloud"
break
- case "120.25.146.51:8004":
+ case "120.25.146.31:8004":
env = "cloud"
break
- case "120.25.146.51:8005":
+ case "120.25.146.31:8005":
env = "cloud"
break
case "www.xmmhe.com:8001":
diff --git a/src/files/list/FM008.js b/src/files/list/FM008.js
index d7feee2..b7aaf1d 100644
--- a/src/files/list/FM008.js
+++ b/src/files/list/FM008.js
@@ -29,6 +29,29 @@ export default {
click: regClick
}
},
+ btnEditAuth: ({ record, close, loadData, login, dispatch }) => {
+ const closeF = () => {
+ close();
+ loadData();
+ };
+ const regClick = async function () {
+ await dispatch({
+ type: 'custom/save',
+ payload: {
+ ['userEditClick' + (record ? record.ID : '')]: true
+ },
+ });
+ };
+ const data = {
+ id: (record ? record.ID : ''),
+ close: closeF,
+ userEditClick: login.userEditClick,
+ };
+ return {
+ content: ,
+ click: regClick
+ }
+ },
reset: ({ record, close, loadData, getLoadParam, login, btn, dispatch }) => {
let val = initQueryFilter(login.OrgId, 1, 100, "NUM", 0);
val["Keyword"] = record.ID;
diff --git a/src/utils/customConfig.js b/src/utils/customConfig.js
index 887cc55..bd72c84 100644
--- a/src/utils/customConfig.js
+++ b/src/utils/customConfig.js
@@ -4,6 +4,10 @@ const FMUserEditPage = Loadable({
loader: () => import('../components/CustomPages/FM/UserEditPage'),
loading: () =>
})
+const FMUserEditPageAuth = Loadable({
+ loader: () => import('../components/CustomPages/FM/UserEditPageAuth'),
+ loading: () =>
+})
const FMUserGroupEditPage = Loadable({
loader: () => import('../components/CustomPages/FM/UserGroupEditPage'),
@@ -2234,6 +2238,7 @@ const WB053ShowPrint = Loadable({
export default function (componentName, formId, formParam, data, formCode, formData) {
return {
FMUserEditPage: ,
+ FMUserEditPageAuth: ,
FMUserGroupEditPage: ,
FMRoleGroupEditPage: ,
FMRoleEditPage: ,
diff --git a/src/utils/customConfig1.js b/src/utils/customConfig1.js
index 88af8ca..928b3e5 100644
--- a/src/utils/customConfig1.js
+++ b/src/utils/customConfig1.js
@@ -398,6 +398,10 @@ const FMUserEditPage = Loadable({
loader: () => import('../components/CustomPages/FM/UserEditPage'),
loading: () =>
})
+const FMUserEditPageAuth = Loadable({
+ loader: () => import('../components/CustomPages/FM/UserEditPageAuth'),
+ loading: () =>
+})
// const TL037ShowPrint = Loadable({
// loader: () => import('../components/CustomPages/TL/TL037ShowPrint'),
@@ -754,6 +758,7 @@ export default function (componentName, formId, formParam, data, formCode, formD
OG010ShowPrint: ,
FMRoleEditPage: ,
FMUserEditPage: ,
+ FMUserEditPageAuth: ,
PFFormConfigByNamePage: ,
FM204ShowPrint: ,
BI050BSSafeCheck: ,
From 7b0f22576a723192a77534a0cbf0d4e49727ecfd Mon Sep 17 00:00:00 2001
From: wyw <571921741@qq.com>
Date: Tue, 2 Sep 2025 13:49:12 +0800
Subject: [PATCH 3/5] 213
---
package.json | 10 +++++-----
src/config.js | 8 ++++----
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/package.json b/package.json
index 1f979fd..d7a879d 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
{
"private": true,
"scripts": {
- "start": "set PORT=2000 && cross-env ESLINT=none roadhog server",
- "startbt": "set PORT=2001 && cross-env ESLINT=none roadhog server",
- "startly": "set PORT=2002 && cross-env ESLINT=none roadhog server",
- "startkljl": "set PORT=2003 && cross-env ESLINT=none roadhog server",
- "startxt": "set PORT=2004 && cross-env ESLINT=none roadhog server",
+ "start": "set PORT=5000 && cross-env ESLINT=none roadhog server",
+ "startbt": "set PORT=5001 && cross-env ESLINT=none roadhog server",
+ "startly": "set PORT=5002 && cross-env ESLINT=none roadhog server",
+ "startkljl": "set PORT=5003 && cross-env ESLINT=none roadhog server",
+ "startxt": "set PORT=5004 && cross-env ESLINT=none roadhog server",
"build": "cross-env ESLINT=none roadhog build",
"build:report": "cross-env ESLINT=none NODE_ENV=production ANALYZE=true roadhog build"
},
diff --git a/src/config.js b/src/config.js
index cfadf85..1843a45 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,8 +1,8 @@
const getServiceHost = api => {
- const apimodules = [{ OP: 3116 }, { BD: 3101 }, { DD: 3102 }, { EA: 3103 }, { ED: 3104 }, { EM: 3105 }, { FC: 3106 },
- { FM: 3107 }, { KR: 3108 }, { LG: 3109 }, { MR: 3110 }, { NW: 3111 }, { PF: 3112 }, { PM: 3113 }, { QC: 3114 }, { FW: 3115 }, { OP: 3116 },
- { HM: 3117 }, { PP: 3118 }, { FO: 3119 }, { UT: 3177 }, { BS: 3178 }, { SC: 3179 }, { TI: 3179 }, { SE: 3179 }, { AE: 3179 }, { PT: 3179 }, { LR: 3179 }, { OG: 3179 }, { PE: 3179 }, { OH: 3179 }, { CM: 3179 }, { PR: 3179 }, { DM: 3179 }, { BI: 3179 }, { TL: 3179 }, { WB: 3179 }, { PC: 3179 }, { SK: 3180 }]
- let port = 3112
+ const apimodules = [{ OP: 5116 }, { BD: 5101 }, { DD: 5102 }, { EA: 5103 }, { ED: 5104 }, { EM: 5105 }, { FC: 5106 },
+ { FM: 5107 }, { KR: 5108 }, { LG: 5109 }, { MR: 5110 }, { NW: 5111 }, { PF: 5112 }, { PM: 5113 }, { QC: 5114 }, { FW: 5115 }, { OP: 5116 },
+ { HM: 5117 }, { PP: 5118 }, { FO: 5119 }, { UT: 5177 }, { BS: 5178 }, { SC: 5179 }, { TI: 5179 }, { SE: 5179 }, { AE: 5179 }, { PT: 5179 }, { LR: 5179 }, { OG: 5179 }, { PE: 5179 }, { OH: 5179 }, { CM: 5179 }, { PR: 5179 }, { DM: 5179 }, { BI: 5179 }, { TL: 5179 }, { WB: 5179 }, { PC: 5179 }, { SK: 5180 }]
+ let port = 5112
for (let i = 0; i < apimodules.length; i++) {
const apimodule = apimodules[i]
const key = Object.keys(apimodule)[0]
From c9f1a476b156c21ef9736eca1a9685f4e9eae7aa Mon Sep 17 00:00:00 2001
From: wyw <571921741@qq.com>
Date: Wed, 3 Sep 2025 15:08:04 +0800
Subject: [PATCH 4/5] 123
---
src/config.js | 95 +++++++++++++--------------------------------------
1 file changed, 24 insertions(+), 71 deletions(-)
diff --git a/src/config.js b/src/config.js
index 1843a45..14d44c7 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,6 +1,6 @@
const getServiceHost = api => {
const apimodules = [{ OP: 5116 }, { BD: 5101 }, { DD: 5102 }, { EA: 5103 }, { ED: 5104 }, { EM: 5105 }, { FC: 5106 },
- { FM: 5107 }, { KR: 5108 }, { LG: 5109 }, { MR: 5110 }, { NW: 5111 }, { PF: 5112 }, { PM: 5113 }, { QC: 5114 }, { FW: 5115 }, { OP: 5116 },
+ { FM: 5107 }, { KR: 5108 }, { LG: 5109 }, { MR: 5110 }, { NW: 5111 }, { PF: 5112 }, { PM: 5113 }, { QC: 5114 }, { FW: 5115 },
{ HM: 5117 }, { PP: 5118 }, { FO: 5119 }, { UT: 5177 }, { BS: 5178 }, { SC: 5179 }, { TI: 5179 }, { SE: 5179 }, { AE: 5179 }, { PT: 5179 }, { LR: 5179 }, { OG: 5179 }, { PE: 5179 }, { OH: 5179 }, { CM: 5179 }, { PR: 5179 }, { DM: 5179 }, { BI: 5179 }, { TL: 5179 }, { WB: 5179 }, { PC: 5179 }, { SK: 5180 }]
let port = 5112
for (let i = 0; i < apimodules.length; i++) {
@@ -69,78 +69,31 @@ const config = {
let env = ""
switch (window.location.host) {
case "120.25.146.31":
+ case "120.25.146.31:5000":
+ case "120.25.146.31:5001":
+ case "120.25.146.31:5002":
+ case "120.25.146.31:5003":
+ case "120.25.146.31:5004":
+ case "www.xmmhe.com":
+ case "www.xmmhe.com:5000":
+ case "www.xmmhe.com:5001":
+ case "www.xmmhe.com:5002":
+ case "www.xmmhe.com:5003":
+ case "www.xmmhe.com:5004":
+ case "xmmhe.com":
+ case "xmmhe.com:5000":
+ case "xmmhe.com:5001":
+ case "xmmhe.com:5002":
+ case "xmmhe.com:5003":
+ case "xmmhe.com:5004":
+ case "xmmhe.com:5005":
env = "cloud"
break
- case "120.25.146.31:8001":
- env = "cloud"
- break
- case "120.25.146.31:8002":
- env = "cloud"
- break
- case "120.25.146.31:8003":
- env = "cloud"
- break
- case "120.25.146.31:8004":
- env = "cloud"
- break
- case "120.25.146.31:8005":
- env = "cloud"
- break
- case "www.xmmhe.com:8001":
- env = "cloud"
- break
- case "www.xmmhe.com:8002":
- env = "cloud"
- break
- case "www.xmmhe.com:8003":
- env = "cloud"
- break
- case "www.xmmhe.com:8004":
- env = "cloud"
- break
- case "www.xmmhe.com:8005":
- env = "cloud"
- break
- case "xmmhe.com:8001":
- env = "cloud"
- break
- case "xmmhe.com:8002":
- env = "cloud"
- break
- case "xmmhe.com:8003":
- env = "cloud"
- break
- case "xmmhe.com:8004":
- env = "cloud"
- break
- case "xmmhe.com:8005":
- env = "cloud"
- break
- case "10.50.4.139:8000":
- env = "cloud"
- break
- case "10.50.2.189:8000":
- env = "test"
- break
- case "47.122.43.22:8001":
- env = "test"
- break
- case "47.122.43.22:8002":
- env = "test"
- break
- case "47.122.43.22:8003":
- env = "test"
- break
- case "47.122.43.22:8004":
- env = "test"
- break
- case "47.122.43.22:8005":
- env = "test"
- break
- case "47.122.43.22:8008":
- env = "test"
- break
- case "47.122.43.22:8006":
+ case "47.122.43.22:5000":
+ case "47.122.43.22:5001":
+ case "47.122.43.22:5002":
+ case "47.122.43.22:5003":
+ case "47.122.43.22:5004":
env = "test"
break
default:
From c94052874042b8454decf1ebb8aa9f7aa564590d Mon Sep 17 00:00:00 2001
From: wyw <571921741@qq.com>
Date: Fri, 5 Sep 2025 15:58:32 +0800
Subject: [PATCH 5/5] 123
---
.../CustomPages/PF/FormConfigSqlPage.js | 10 +-
src/config.js | 6 +-
src/utils/customConfig1.js | 2284 ++++++++++++-----
3 files changed, 1605 insertions(+), 695 deletions(-)
diff --git a/src/components/CustomPages/PF/FormConfigSqlPage.js b/src/components/CustomPages/PF/FormConfigSqlPage.js
index 616f9c9..1bc1ee1 100644
--- a/src/components/CustomPages/PF/FormConfigSqlPage.js
+++ b/src/components/CustomPages/PF/FormConfigSqlPage.js
@@ -244,13 +244,19 @@ class FormConfigSqlPage extends React.Component {
data,
})
}} >
-
+ {/*
-
+ */}
+
+
+
+
+
+
diff --git a/src/config.js b/src/config.js
index 14d44c7..04cf3df 100644
--- a/src/config.js
+++ b/src/config.js
@@ -25,7 +25,7 @@ const config = {
flowServiceHost: "http://120.25.146.31:3188/",
hmiUrl: "http://localhost:8060/",
webSocketHost: 'ws://localhost:3140/',
- picServerHost: 'http://localhost:3199',
+ picServerHost: 'http://localhost:5199',
dataVUrl: "http://localhost:8062/home",
version: version,
guideSeverHost: "http://47.122.43.22/apk/",
@@ -41,7 +41,7 @@ const config = {
cookieDomain: "",
hmiUrl: "http://120.25.146.31:8098/",
webSocketHost: 'ws://120.25.146.31:3140/',
- picServerHost: 'http://120.25.146.31:3199',
+ picServerHost: 'http://120.25.146.31:5199',
dataVUrl: "http://120.25.146.31:3167/home",
version: version,
guideSeverHost: "http://www.xmmhe.com/apk/",
@@ -57,7 +57,7 @@ const config = {
cookieDomain: "",
hmiUrl: "http://47.122.43.22:8098/",
webSocketHost: 'ws://47.122.43.22:3140/',
- picServerHost: 'http://47.122.43.22:3199',
+ picServerHost: 'http://47.122.43.22:5199',
dataVUrl: "http://47.122.43.22:3167/home",
version: version,
guideSeverHost: "http://47.122.43.22/apk/",
diff --git a/src/utils/customConfig1.js b/src/utils/customConfig1.js
index 928b3e5..c51dbfe 100644
--- a/src/utils/customConfig1.js
+++ b/src/utils/customConfig1.js
@@ -1,75 +1,392 @@
import Loadable from 'react-loadable'
-const BI050BSSafeCheck = Loadable({
- loader: () => import('../components/CustomPages/BI/BI050BSSafeCheck'),
+const FMUserEditPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/UserEditPage'),
loading: () =>
})
-const BI051BSCompanyYear = Loadable({
- loader: () => import('../components/CustomPages/BI/BI051BSCompanyYearOne'),
- loading: () =>
-})
-const BI052BSSafeCheckYear = Loadable({
- loader: () => import('../components/CustomPages/BI/BI052BSSafeCheckYearOne'),
- loading: () =>
-})
-const BI053BSSafeCheckYear = Loadable({
- loader: () => import('../components/CustomPages/BI/BI053BSSafeCheckYearOne'),
- loading: () =>
-})
-const BI054HomeDetail = Loadable({
- loader: () => import('../components/CustomPages/BI/BI054HomeDetail'),
+const FMUserEditPageAuth = Loadable({
+ loader: () => import('../components/CustomPages/FM/UserEditPageAuth'),
loading: () =>
})
-const BI055HomeDetail = Loadable({
- loader: () => import('../components/CustomPages/BI/BI055HomeDetail'),
- loading: () =>
-})
-const BI056Performance = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Performance'),
- loading: () =>
-})
-const BI056Dilg1_1 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg1_1'),
- loading: () =>
-})
-const BI056Dilg1_2 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg1_2'),
- loading: () =>
-})
-const BI056Dilg2_1 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg2_1'),
- loading: () =>
-})
-const BI056Dilg2_2 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg2_2'),
- loading: () =>
-})
-const BI056Dilg3_1 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg3_1'),
- loading: () =>
-})
-const BI056Dilg3_2 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI056Dilg3_2'),
- loading: () =>
-})
-const BI060MapeShow = Loadable({
- loader: () => import('../components/CustomPages/BI/BI060MapeShow'),
- loading: () =>
-})
-const BI060MapePoint = Loadable({
- loader: () => import('../components/CustomPages/BI/BI060MapePoint'),
- loading: () =>
-})
-const BI061MapeGISShow = Loadable({
- loader: () => import('../components/CustomPages/BI/BI061MapeGISShow'),
- loading: () =>
-})
-const BI001 = Loadable({
- loader: () => import('../components/CustomPages/BI/BI001'),
+const FMUserGroupEditPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/UserGroupEditPage'),
loading: () =>
})
+const PFCustomPageConfigPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/CustomPageConfigPage'),
+ loading: () =>
+})
+
+const FMRoleGroupEditPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/RoleGroupEditPage'),
+ loading: () =>
+})
+
+const FMRoleEditPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/RoleEditPage'),
+ loading: () =>
+})
+
+const FM204ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FM/FM204ShowPrint'),
+ loading: () =>
+})
+
+// const PMPlanningSchedulingPage = Loadable({
+// loader: () => import('../components/CustomPages/PM/PlanningSchedulingPage'),
+// loading: () =>
+// })
+
+// const SOMrpPage = Loadable({
+// loader: () => import('../components/CustomPages/SO/MrpPage'),
+// loading: () =>
+// })
+// const BDPlantHierarchyPage = Loadable({
+// loader: () => import('../components/CustomPages/BD/BDPlantHierarchyPage'),
+// loading: () =>
+// })
+
+
+const FMBaseConfig = Loadable({
+ loader: () => import('../components/CustomPages/FM/BaseConfig'),
+ loading: () =>
+})
+const PFFlowSchemesEditPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/FlowSchemesEditPage'),
+ loading: () =>
+})
+
+const PFFlowSchemesShowPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/FlowSchemesShowPage'),
+ loading: () =>
+})
+
+const PFFlowPermitEditPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/FlowPermitEditPage'),
+ loading: () =>
+})
+
+
+const PFFormConfigSqlPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/FormConfigSqlPage'),
+ loading: () =>
+})
+const PF147ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/PF/PF147ShowPrint'),
+ loading: () =>
+})
+
+
+const WOSOPViewPage = Loadable({
+ loader: () => import('../components/CustomPages/WO/SOPViewPage'),
+ loading: () =>
+})
+
+
+const FMCustomImportPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/CustomImportPage'),
+ loading: () =>
+})
+
+const FMNodeSchedulingPage = Loadable({
+ loader: () => import('../components/CustomPages/FM/NodeSchedulingPage'),
+ loading: () =>
+})
+
+
+const PFEntitySqlPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/EntitySqlPage'),
+ loading: () =>
+})
+
+const PFInitDestOrgPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/InitDestOrgPage'),
+ loading: () =>
+})
+
+const PFEntityFieldListPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/EntityFieldListPage'),
+ loading: () =>
+})
+
+const PFExecuteSqlPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/ExecuteSqlPage'),
+ loading: () =>
+})
+
+const PFSendInfoToClientPage = Loadable({
+ loader: () => import('../components/CustomPages/PF/SendInfoToClientPage'),
+ loading: () =>
+})
+const PFFormConfigByNamePage = Loadable({
+ loader: () => import('../components/CustomPages/PF/FormConfigByNamePage'),
+ loading: () =>
+})
+
+const BDPictureEditPage = Loadable({
+ loader: () => import('../components/CustomPages/BD/PictureEditPage'),
+ loading: () =>
+})
+
+
+const BDHmiPage = Loadable({
+ loader: () => import('../components/CustomPages/BD/BDHmiPage'),
+ loading: () =>
+})
+const BDWordPage = Loadable({
+ loader: () => import('../components/CustomPages/BD/BDWordPage'),
+ loading: () =>
+})
+
+const FoPreOperSch = Loadable({
+ loader: () => import('../components/CustomPages/FO/FoPreOperSch'),
+ loading: () =>
+})
+
+const FoTeamActivityShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FoTeamActivityShowPrint'),
+ loading: () =>
+})
+
+const PFCommonApprove = Loadable({
+ loader: () => import('../components/CustomPages/PF/PFCommonApprove'),
+ loading: () =>
+})
+
+const PFCommonApproveView = Loadable({
+ loader: () => import('../components/CustomPages/PF/PFCommonApproveView'),
+ loading: () =>
+})
+
+const PFTodayReminder = Loadable({
+ loader: () => import('../components/CustomPages/PF/PFTodayReminder'),
+ loading: () =>
+})
+const SelectUser = Loadable({
+ loader: () => import('../components/CustomPages/FM/SelectUser'),
+ loading: () =>
+})
+const FO003ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO003ShowPrint'),
+ loading: () =>
+})
+const FO003ShowPrintJD = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO003ShowPrintJD'),
+ loading: () =>
+})
+const FO005ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO005ShowPrint'),
+ loading: () =>
+})
+const FOChangeShfitRecord = Loadable({
+ loader: () => import('../components/CustomPages/FO/FOChangeShfitRecord'),
+ loading: () =>
+})
+const HM047ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM047ShowPrint'),
+ loading: () =>
+})
+const HM040ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM040ShowPrint'),
+ loading: () =>
+})
+const HM042ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM042ShowPrint'),
+ loading: () =>
+})
+const HM001ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM001ShowPrint'),
+ loading: () =>
+})
+const HM061ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM061ShowPrint'),
+ loading: () =>
+})
+const HM063ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM063ShowPrint'),
+ loading: () =>
+})
+const HM101ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM101ShowPrint'),
+ loading: () =>
+})
+const HM099ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM099ShowPrint'),
+ loading: () =>
+})
+const HM121ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM121ShowPrint'),
+ loading: () =>
+})
+
+const HM104ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM104ShowPrint'),
+ loading: () =>
+})
+const HM087ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM087ShowPrint'),
+ loading: () =>
+})
+const HM109ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM109ShowPrint'),
+ loading: () =>
+})
+const HM129ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM129ShowPrint'),
+ loading: () =>
+})
+
+const HM107ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM107ShowPrint'),
+ loading: () =>
+})
+
+const HM111ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM111ShowPrint'),
+ loading: () =>
+})
+const HM123ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/HM/HM123ShowPrint'),
+ loading: () =>
+})
+const HMTasks = Loadable({
+ loader: () => import('../components/CustomPages/HM/HMTasks'),
+ loading: () =>
+})
+// const BS026ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS026ShowPrint'),
+// loading: () =>
+// })
+// const BS032ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS032ShowPrint'),
+// loading: () =>
+// })
+// const BS034EditPage = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS034EditPage'),
+// loading: () =>
+// })
+// const BS034ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS034ShowPrint'),
+// loading: () =>
+// })
+// const BS006ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS006ShowPrint'),
+// loading: () =>
+// })
+// const BS006View = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS006View'),
+// loading: () =>
+// })
+// const BS042ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS042ShowPrint'),
+// loading: () =>
+// })
+// const BS042ActualCheck = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS042ActualCheck'),
+// loading: () =>
+// })
+// const BS044ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS044ShowPrint'),
+// loading: () =>
+// })
+// const BS044Check = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS044Check'),
+// loading: () =>
+// })
+// const BS044Notice = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS044Notice'),
+// loading: () =>
+// })
+// const BS046ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS046ShowPrint'),
+// loading: () =>
+// })
+// const BS048ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS048ShowPrint'),
+// loading: () =>
+// })
+// const BS049ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS049ShowPrint'),
+// loading: () =>
+// })
+// const BS044ShowPrintDOut = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS044ShowPrintDOut'),
+// loading: () =>
+// })
+// const BS044EditPage = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS044EditPage'),
+// loading: () =>
+// })
+// const BS064ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS064ShowPrint'),
+// loading: () =>
+// })
+// const BS069ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS069ShowPrint'),
+// loading: () =>
+// })
+// const BS070ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS070ShowPrint'),
+// loading: () =>
+// })
+// const BS072ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS072ShowPrint'),
+// loading: () =>
+// })
+// const BS074ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS074ShowPrint'),
+// loading: () =>
+// })
+// const BS073ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS073ShowPrint'),
+// loading: () =>
+// })
+// const BS034View = Loadable({
+// loader: () => import('../components/CustomPages/BS/BS034View'),
+// loading: () =>
+// })
+const FileViewerShow = Loadable({
+ loader: () => import('../components/common/FileViewerShow'),
+ loading: () =>
+})
+const BS076ShowOperateLog = Loadable({
+ loader: () => import('../components/CustomPages/BS/BS076ShowOperateLog'),
+ loading: () =>
+})
+const FO017ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO017ShowPrint'),
+ loading: () =>
+})
+const FO017ShowPrintJD = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO017ShowPrintJD'),
+ loading: () =>
+})
+const FO021ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO021ShowPrint'),
+ loading: () =>
+})
+const FO022ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO022ShowPrint'),
+ loading: () =>
+})
+const FO015ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO015ShowPrint'),
+ loading: () =>
+})
+const FO008ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO008ShowPrint'),
+ loading: () =>
+})
+const FO021EditPage = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO021EditPage'),
+ loading: () =>
+})
+const FO019ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO019ShowPrint'),
+ loading: () =>
+})
const SC028ShowPrint = Loadable({
loader: () => import('../components/CustomPages/SC/SC028ShowPrint'),
loading: () =>
@@ -78,6 +395,10 @@ const SC022Import = Loadable({
loader: () => import('../components/CustomPages/SC/SC022Import'),
loading: () =>
})
+const PT027Import = Loadable({
+ loader: () => import('../components/CustomPages/PT/PT027Import'),
+ loading: () =>
+})
const SC030ShowPrint = Loadable({
loader: () => import('../components/CustomPages/SC/SC030ShowPrint'),
loading: () =>
@@ -94,11 +415,383 @@ const SC030ShowPrintView = Loadable({
loader: () => import('../components/CustomPages/SC/SC030ShowPrintView'),
loading: () =>
})
-
+const PreMeetingTask = Loadable({
+ loader: () => import('../components/CustomPages/Mobile/PreMeetingTask'),
+ loading: () =>
+})
+const PreOperSchTask = Loadable({
+ loader: () => import('../components/CustomPages/Mobile/PreOperSchTask'),
+ loading: () =>
+})
+const PF132ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/PF/PF132ShowPrint'),
+ loading: () =>
+})
+const RiskSubmit = Loadable({
+ loader: () => import('../components/CustomPages/Mobile/RiskSubmit'),
+ loading: () =>
+})
+const CrucialLicenseJob = Loadable({
+ loader: () => import('../components/CustomPages/Mobile/CrucialLicenseJob'),
+ loading: () =>
+})
+const SE001EditPage = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE001EditPage'),
+ loading: () =>
+})
+const SEConfigPage = Loadable({
+ loader: () => import('../components/CustomPages/SE/SEConfigPage'),
+ loading: () =>
+})
+const SE005ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE005ShowPrint'),
+ loading: () =>
+})
+const SESafeSurveyTest = Loadable({
+ loader: () => import('../components/CustomPages/SE/SESafeSurveyTest'),
+ loading: () =>
+})
+const SE005ReportEdit = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE005ReportEdit'),
+ loading: () =>
+})
+const SE007ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE007ShowPrint'),
+ loading: () =>
+})
+const SE007AllView = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE007AllView'),
+ loading: () =>
+})
+const SE009ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE009ShowPrint'),
+ loading: () =>
+})
+const SE011ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE011ShowPrint'),
+ loading: () =>
+})
+const SE013ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE013ShowPrint'),
+ loading: () =>
+})
+const SE015ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE015ShowPrint'),
+ loading: () =>
+})
+const SE018EditPage = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE018EditPage'),
+ loading: () =>
+})
+const SE018PaperPage = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE018PaperPage'),
+ loading: () =>
+})
+const SE019ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE019ShowPrint'),
+ loading: () =>
+})
+const SE021ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE021ShowPrint'),
+ loading: () =>
+})
+const SE061ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE061ShowPrint'),
+ loading: () =>
+})
+const SE061PaperPage = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE061PaperPage'),
+ loading: () =>
+})
+const SE062ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE062ShowPrint'),
+ loading: () =>
+})
+const SE063ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE063ShowPrint'),
+ loading: () =>
+})
+const SE051ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SE/SE051ShowPrint'),
+ loading: () =>
+})
+const LR001ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/LR/LR001ShowPrint'),
+ loading: () =>
+})
+const LR007Edit = Loadable({
+ loader: () => import('../components/CustomPages/LR/LR007Edit'),
+ loading: () =>
+})
+const LR003ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/LR/LR003ShowPrint'),
+ loading: () =>
+})
+const LR007ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/LR/LR007ShowPrint'),
+ loading: () =>
+})
+const LR009ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/LR/LR009ShowPrint'),
+ loading: () =>
+})
const SCShowPrint = Loadable({
loader: () => import('../components/CustomPages/SC/SCShowPrint'),
loading: () =>
})
+// const OG001ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG001ShowPrint'),
+// loading: () =>
+// })
+// const OG001ReportView = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG001ReportView'),
+// loading: () =>
+// })
+// const OG003ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG003ShowPrint'),
+// loading: () =>
+// })
+// const OG005ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG005ShowPrint'),
+// loading: () =>
+// })
+// const OG005ImportPage = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG005ImportPage'),
+// loading: () =>
+// })
+// const OG008ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG008ShowPrint'),
+// loading: () =>
+// })
+// const OG010ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG010ShowPrint'),
+// loading: () =>
+// })
+// const OG011ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG011ShowPrint'),
+// loading: () =>
+// })
+// const OG013ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG013ShowPrint'),
+// loading: () =>
+// })
+// const OG015ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG015ShowPrint'),
+// loading: () =>
+// })
+// const OG023ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG023ShowPrint'),
+// loading: () =>
+// })
+// const OG025ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG025ShowPrint'),
+// loading: () =>
+// })
+// const OG027ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG027ShowPrint'),
+// loading: () =>
+// })
+// const OG030ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG030ShowPrint'),
+// loading: () =>
+// })
+// const OG030ReplyView = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG030ReplyView'),
+// loading: () =>
+// })
+// const OG031ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG031ShowPrint'),
+// loading: () =>
+// })
+// const OG034EditPage = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG034EditPage'),
+// loading: () =>
+// })
+// const OG018Check = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG018Check'),
+// loading: () =>
+// })
+// const OG020Edit = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG020Edit'),
+// loading: () =>
+// })
+// const OG059EditPage = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG059EditPage'),
+// loading: () =>
+// })
+// const OG059ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG059ShowPrint'),
+// loading: () =>
+// })
+// const OG059UserView = Loadable({
+// loader: () => import('../components/CustomPages/OG/OG059UserView'),
+// loading: () =>
+// })
+// const PT014ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT014ShowPrint'),
+// loading: () =>
+// })
+// const PT017ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT017ShowPrint'),
+// loading: () =>
+// })
+// const TI008ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI008ShowPrint'),
+// loading: () =>
+// })
+// const TI008ShowPrints = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI008ShowPrints'),
+// loading: () =>
+// })
+// const TI010ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI010ShowPrint'),
+// loading: () =>
+// })
+// const TI012ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI012ShowPrint'),
+// loading: () =>
+// })
+// const TI014ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI014ShowPrint'),
+// loading: () =>
+// })
+// const TI016ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI016ShowPrint'),
+// loading: () =>
+// })
+// const TI018ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI018ShowPrint'),
+// loading: () =>
+// })
+// const TI021ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/TI/TI021ShowPrint'),
+// loading: () =>
+// })
+// const OH003ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH003ShowPrint'),
+// loading: () =>
+// })
+// const OH005ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH005ShowPrint'),
+// loading: () =>
+// })
+// const OH006ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH006ShowPrint'),
+// loading: () =>
+// })
+// const OH010ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH010ShowPrint'),
+// loading: () =>
+// })
+// const OH012ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH012ShowPrint'),
+// loading: () =>
+// })
+// const OH017Import = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH017Import'),
+// loading: () =>
+// })
+// const OH024ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH024ShowPrint'),
+// loading: () =>
+// })
+// const OH028ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH028ShowPrint'),
+// loading: () =>
+// })
+// const OH034ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/OH/OH034ShowPrint'),
+// loading: () =>
+// })
+// const AE006ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/AE/AE006ShowPrint'),
+// loading: () =>
+// })
+// const AE008ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/AE/AE008ShowPrint'),
+// loading: () =>
+// })
+// const AE010ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/AE/AE010ShowPrint'),
+// loading: () =>
+// })
+// const AE019ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/AE/AE019ShowPrint'),
+// loading: () =>
+// })
+// const AE018ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/AE/AE018ShowPrint'),
+// loading: () =>
+// })
+
+// const PT020ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT020ShowPrint'),
+// loading: () =>
+// })
+
+// const PT024ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT024ShowPrint'),
+// loading: () =>
+// })
+
+// const PT029ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT029ShowPrint'),
+// loading: () =>
+// })
+
+// const PT013ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT013ShowPrint'),
+// loading: () =>
+// })
+// const PT036ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT036ShowPrint'),
+// loading: () =>
+// })
+// const PT040ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PT/PT040ShowPrint'),
+// loading: () =>
+// })
+// const PE005ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE005ShowPrint'),
+// loading: () =>
+// })
+// const PE007ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE007ShowPrint'),
+// loading: () =>
+// })
+// const PE009ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE009ShowPrint'),
+// loading: () =>
+// })
+// const PE019ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE019ShowPrint'),
+// loading: () =>
+// })
+// const PE021ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE021ShowPrint'),
+// loading: () =>
+// })
+// const PE022ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE022ShowPrint'),
+// loading: () =>
+// })
+// const PE027ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PE/PE027ShowPrint'),
+// loading: () =>
+// })
+const PE029ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/PE/PE029ShowPrint'),
+ loading: () =>
+})
+const PE029ShowPrintNew = Loadable({
+ loader: () => import('../components/CustomPages/PE/PE029ShowPrintNew'),
+ loading: () =>
+})
+
+const PE030ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/PE/PE030ShowPrint'),
+ loading: () =>
+})
const SC046ShowPrint = Loadable({
loader: () => import('../components/CustomPages/SC/SC046ShowPrint'),
loading: () =>
@@ -107,151 +800,8 @@ const SC052ShowPrint = Loadable({
loader: () => import('../components/CustomPages/SC/SC052ShowPrint'),
loading: () =>
})
-const FM204ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/FM/FM204ShowPrint'),
- loading: () =>
-})
-const BS026ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS026ShowPrint'),
- loading: () =>
-})
-const BS032ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS032ShowPrint'),
- loading: () =>
-})
-const BS034EditPage = Loadable({
- loader: () => import('../components/CustomPages/BS/BS034EditPage'),
- loading: () =>
-})
-const BS034ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS034ShowPrint'),
- loading: () =>
-})
-const BS006ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS006ShowPrint'),
- loading: () =>
-})
-const BS006View = Loadable({
- loader: () => import('../components/CustomPages/BS/BS006View'),
- loading: () =>
-})
-const BS042ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS042ShowPrint'),
- loading: () =>
-})
-const BS042ActualCheck = Loadable({
- loader: () => import('../components/CustomPages/BS/BS042ActualCheck'),
- loading: () =>
-})
-const BS044ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS044ShowPrint'),
- loading: () =>
-})
-const BS044Check = Loadable({
- loader: () => import('../components/CustomPages/BS/BS044Check'),
- loading: () =>
-})
-const BS044Notice = Loadable({
- loader: () => import('../components/CustomPages/BS/BS044Notice'),
- loading: () =>
-})
-const BS046ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS046ShowPrint'),
- loading: () =>
-})
-const BS048ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS048ShowPrint'),
- loading: () =>
-})
-const BS049ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS049ShowPrint'),
- loading: () =>
-})
-const BS044ShowPrintDOut = Loadable({
- loader: () => import('../components/CustomPages/BS/BS044ShowPrintDOut'),
- loading: () =>
-})
-const BS044EditPage = Loadable({
- loader: () => import('../components/CustomPages/BS/BS044EditPage'),
- loading: () =>
-})
-const BS034View = Loadable({
- loader: () => import('../components/CustomPages/BS/BS034View'),
- loading: () =>
-})
-const BS064ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS064ShowPrint'),
- loading: () =>
-})
-const BS070ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS070ShowPrint'),
- loading: () =>
-})
-const BS072ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS072ShowPrint'),
- loading: () =>
-})
-const BS074ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS074ShowPrint'),
- loading: () =>
-})
-const BS076ShowOperateLog = Loadable({
- loader: () => import('../components/CustomPages/BS/BS076ShowOperateLog'),
- loading: () =>
-})
-const BS069ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS069ShowPrint'),
- loading: () =>
-})
-const BS073ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/BS/BS073ShowPrint'),
- loading: () =>
-})
-const FileViewerShow = Loadable({
- loader: () => import('../components/common/FileViewerShow'),
- loading: () =>
-})
-const OG034EditPage = Loadable({
- loader: () => import('../components/CustomPages/OG/OG034EditPage'),
- loading: () =>
-})
-
-const PFCommonApprove = Loadable({
- loader: () => import('../components/CustomPages/PF/PFCommonApprove'),
- loading: () =>
-})
-
-const PFCommonApproveView = Loadable({
- loader: () => import('../components/CustomPages/PF/PFCommonApproveView'),
- loading: () =>
-})
-const PFFormConfigSqlPage = Loadable({
- loader: () => import('../components/CustomPages/PF/FormConfigSqlPage'),
- loading: () =>
-})
-const PF147ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/PF/PF147ShowPrint'),
- loading: () =>
-})
-
-const AE006ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/AE/AE006ShowPrint'),
- loading: () =>
-})
-const AE008ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/AE/AE008ShowPrint'),
- loading: () =>
-})
-const AE010ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/AE/AE010ShowPrint'),
- loading: () =>
-})
-const AE019ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/AE/AE019ShowPrint'),
- loading: () =>
-})
-const AE018ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/AE/AE018ShowPrint'),
+const PR003ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/PR/PR003ShowPrint'),
loading: () =>
})
// const CM018ShowPrint = Loadable({
@@ -286,10 +836,10 @@ const AE018ShowPrint = Loadable({
// loader: () => import('../components/CustomPages/CM/CM031ShowPrint'),
// loading: () =>
// })
-const CM034ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/CM/CM034ShowPrint'),
- loading: () =>
-})
+// const CM034ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/CM/CM034ShowPrint'),
+// loading: () =>
+// })
// const CM036Edit = Loadable({
// loader: () => import('../components/CustomPages/CM/CM036Edit'),
// loading: () =>
@@ -311,98 +861,314 @@ const CM034ShowPrint = Loadable({
// loading: () =>
// })
-const DM010ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/DM/DM010ShowPrint'),
+
+// const PR007ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR007ShowPrint'),
+// loading: () =>
+// })
+// const PR009ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR009ShowPrint'),
+// loading: () =>
+// })
+// const PR011ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR011ShowPrint'),
+// loading: () =>
+// })
+// const PR013ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR013ShowPrint'),
+// loading: () =>
+// })
+// const PR015ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR015ShowPrint'),
+// loading: () =>
+// })
+// const PR019ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR019ShowPrint'),
+// loading: () =>
+// })
+// const PR023ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR023ShowPrint'),
+// loading: () =>
+// })
+// const PR026ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR026ShowPrint'),
+// loading: () =>
+// })
+// const PR028ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR028ShowPrint'),
+// loading: () =>
+// })
+// const PR046ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR046ShowPrint'),
+// loading: () =>
+// })
+// const PR048ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR048ShowPrint'),
+// loading: () =>
+// })
+// const PR050ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR050ShowPrint'),
+// loading: () =>
+// })
+// const PR052ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR052ShowPrint'),
+// loading: () =>
+// })
+// const PR056ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR056ShowPrint'),
+// loading: () =>
+// })
+// const PR058ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR058ShowPrint'),
+// loading: () =>
+// })
+// const PR060ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR060ShowPrint'),
+// loading: () =>
+// })
+// const PR062ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR062ShowPrint'),
+// loading: () =>
+// })
+// const PR064ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR064ShowPrint'),
+// loading: () =>
+// })
+// const PR066ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR066ShowPrint'),
+// loading: () =>
+// })
+// const PR068ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/PR/PR068ShowPrint'),
+// loading: () =>
+// })
+
+
+// const DM019ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM019ShowPrint'),
+// loading: () =>
+// })
+// const DM021ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM021ShowPrint'),
+// loading: () =>
+// })
+// const DM002ShowPrintCheck = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM002ShowPrintCheck'),
+// loading: () =>
+// })
+// const DM008ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM008ShowPrint'),
+// loading: () =>
+// })
+// const DM008ShowSummary = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM008ShowSummary'),
+// loading: () =>
+// })
+// const DM009ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM009ShowPrint'),
+// loading: () =>
+// })
+// const DM010ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM010ShowPrint'),
+// loading: () =>
+// })
+// const DM032ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM032ShowPrint'),
+// loading: () =>
+// })
+// const DM012ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM012ShowPrint'),
+// loading: () =>
+// })
+// const DM014ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM014ShowPrint'),
+// loading: () =>
+// })
+// const DM016ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM016ShowPrint'),
+// loading: () =>
+// })
+// const DM030ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM030ShowPrint'),
+// loading: () =>
+// })
+// const DM036ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM036ShowPrint'),
+// loading: () =>
+// })
+// const DM045ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM045ShowPrint'),
+// loading: () =>
+// })
+// const DM026ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/DM/DM026ShowPrint'),
+// loading: () =>
+// })
+const BIView = Loadable({
+ loader: () => import('../components/CustomPages/BI/BIView'),
loading: () =>
})
-const DM032ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/DM/DM032ShowPrint'),
+const CloseTasks = Loadable({
+ loader: () => import('../components/CustomPages/BI/CloseTasks'),
+ loading: () =>
+})
+const BI001 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI001'),
+ loading: () =>
+})
+const BI050BSSafeCheck = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI050BSSafeCheck'),
+ loading: () =>
+})
+const BI051BSCompanyYear = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI051BSCompanyYearOne'),
+ loading: () =>
+})
+const BI052BSSafeCheckYear = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI052BSSafeCheckYearOne'),
+ loading: () =>
+})
+const BI053BSSafeCheckYear = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI053BSSafeCheckYearOne'),
+ loading: () =>
+})
+const BI054HomeDetail = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI054HomeDetail'),
+ loading: () =>
+})
+const BI055HomeDetail = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI055HomeDetail'),
+ loading: () =>
+})
+const BI056Performance = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Performance'),
+ loading: () =>
+})
+const BI056Dilg1_1 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg1_1'),
+ loading: () =>
+})
+const BI056Dilg1_2 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg1_2'),
+ loading: () =>
+})
+const BI056Dilg2_1 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg2_1'),
+ loading: () =>
+})
+const BI056Dilg2_2 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg2_2'),
+ loading: () =>
+})
+const BI056Dilg3_1 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg3_1'),
+ loading: () =>
+})
+const BI056Dilg3_2 = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI056Dilg3_2'),
+ loading: () =>
+})
+const BI003StatiscialAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI003StatiscialAnalysis'),
+ loading: () =>
+})
+const BI005LoginRecord = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI005LoginRecord'),
+ loading: () =>
+})
+const BI001HomeDetail = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI001HomeDetail'),
+ loading: () =>
+})
+const BI002HomeDetail = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI002HomeDetail'),
+ loading: () =>
+})
+const BI004FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI004FormRunAnalysis'),
+ loading: () =>
+})
+const BI006FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI006FormRunAnalysis'),
+ loading: () =>
+})
+const BI006FormRunAnalysisNew = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI006FormRunAnalysisNew'),
+ loading: () =>
+})
+const BI007FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI007FormRunAnalysis'),
+ loading: () =>
+})
+const BI007FormRunAnalysisNew = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI007FormRunAnalysisNew'),
+ loading: () =>
+})
+const BI008FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI008FormRunAnalysis'),
+ loading: () =>
+})
+const BI009RiskAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI009RiskAnalysis'),
+ loading: () =>
+})
+const BI010FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI010FormRunAnalysis'),
+ loading: () =>
+})
+const BI011FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI011FormRunAnalysis'),
+ loading: () =>
+})
+const BI011TrainSafeAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI011TrainSafeAnalysis'),
+ loading: () =>
+})
+const BI012NotificationTaskAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI012NotificationTaskAnalysis'),
+ loading: () =>
+})
+const BI013RiskAnalysisModel = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI013RiskAnalysisModel'),
+ loading: () =>
+})
+const BI030FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI030FormRunAnalysis'),
+ loading: () =>
+})
+const BI060MapeShow = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI060MapeShow'),
+ loading: () =>
+})
+const BI060MapePoint = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI060MapePoint'),
+ loading: () =>
+})
+const BI061MapeGISShow = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI061MapeGISShow'),
+ loading: () =>
+})
+const PF136FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/PF/PF136FormRunAnalysis'),
+ loading: () =>
+})
+const PF139FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/PF/PF139FormRunAnalysis'),
+ loading: () =>
+})
+const BI009FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI009FormRunAnalysis'),
loading: () =>
})
-const PFFormConfigByNamePage = Loadable({
- loader: () => import('../components/CustomPages/PF/FormConfigByNamePage'),
+const SC073ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SC/SC073ShowPrint'),
loading: () =>
})
-
-const OH003ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH003ShowPrint'),
+const FO025ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FO/FO025ShowPrint'),
loading: () =>
})
-const OH005ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH005ShowPrint'),
- loading: () =>
-})
-const OH006ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH006ShowPrint'),
- loading: () =>
-})
-const OH010ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH010ShowPrint'),
- loading: () =>
-})
-const OH012ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH012ShowPrint'),
- loading: () =>
-})
-const OH017Import = Loadable({
- loader: () => import('../components/CustomPages/OH/OH017Import'),
- loading: () =>
-})
-const OH024ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH024ShowPrint'),
- loading: () =>
-})
-const OH028ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH028ShowPrint'),
- loading: () =>
-})
-const OH034ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OH/OH034ShowPrint'),
- loading: () =>
-})
-
-// const TI008ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI008ShowPrint'),
-// loading: () =>
-// })
-// const TI008ShowPrints = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI008ShowPrints'),
-// loading: () =>
-// })
-// const TI010ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI010ShowPrint'),
-// loading: () =>
-// })
-// const TI012ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI012ShowPrint'),
-// loading: () =>
-// })
-// const TI014ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI014ShowPrint'),
-// loading: () =>
-// })
-// const TI016ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI016ShowPrint'),
-// loading: () =>
-// })
-// const TI018ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI018ShowPrint'),
-// loading: () =>
-// })
-// const TI021ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/TI/TI021ShowPrint'),
-// loading: () =>
-// })
-const FMUserEditPage = Loadable({
- loader: () => import('../components/CustomPages/FM/UserEditPage'),
- loading: () =>
-})
-const FMUserEditPageAuth = Loadable({
- loader: () => import('../components/CustomPages/FM/UserEditPageAuth'),
- loading: () =>
-})
-
// const TL037ShowPrint = Loadable({
// loader: () => import('../components/CustomPages/TL/TL037ShowPrint'),
// loading: () =>
@@ -423,7 +1189,6 @@ const FMUserEditPageAuth = Loadable({
// loader: () => import('../components/CustomPages/TL/TL044ShowPrint'),
// loading: () =>
// })
-
// const TL046ShowPrint = Loadable({
// loader: () => import('../components/CustomPages/TL/TL046ShowPrint'),
// loading: () =>
@@ -474,437 +1239,336 @@ const FMUserEditPageAuth = Loadable({
// loader: () => import('../components/CustomPages/TL/TL029ShowPrint'),
// loading: () =>
// })
-
-const SE063ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE063ShowPrint'),
+const BI020ApproveAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI020ApproveAnalysis'),
loading: () =>
})
-
-// const PR023ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/PR/PR023ShowPrint'),
+const BI014RiskPerformanceModel = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI014RiskPerformanceModel'),
+ loading: () =>
+})
+const DM034ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/DM/DM034ShowPrint'),
+ loading: () =>
+})
+const BI012FormRunAnalysis = Loadable({
+ loader: () => import('../components/CustomPages/BI/BI012FormRunAnalysis'),
+ loading: () =>
+})
+const FM202ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/FM/FM202ShowPrint'),
+ loading: () =>
+})
+const PFApproveRole = Loadable({
+ loader: () => import('../components/CustomPages/PF/PFApproveRole'),
+ loading: () =>
+})
+const SK002ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK002ShowPrint'),
+ loading: () =>
+})
+const SK002CheckList = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK002CheckList'),
+ loading: () =>
+})
+const SK002ShowSummary = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK002ShowSummary'),
+ loading: () =>
+})
+const SK004ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK004ShowPrint'),
+ loading: () =>
+})
+const SK004CheckList = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK004CheckList'),
+ loading: () =>
+})
+const SK004CheckPost = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK004CheckPost'),
+ loading: () =>
+})
+const SK004ShowSummary = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK004ShowSummary'),
+ loading: () =>
+})
+const SK004Import = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK004Import'),
+ loading: () =>
+})
+const SK006ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK006ShowPrint'),
+ loading: () =>
+})
+const SK006ShowOperateLog = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK006ShowOperateLog'),
+ loading: () =>
+})
+const SK010ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK010ShowPrint'),
+ loading: () =>
+})
+const SK012ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK012ShowPrint'),
+ loading: () =>
+})
+const SK014ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK014ShowPrint'),
+ loading: () =>
+})
+const SK010CheckList = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK010CheckList'),
+ loading: () =>
+})
+const SK016ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK016ShowPrint'),
+ loading: () =>
+})
+const SK018ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK018ShowPrint'),
+ loading: () =>
+})
+const SK020ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK020ShowPrint'),
+ loading: () =>
+})
+const SK022ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK022ShowPrint'),
+ loading: () =>
+})
+const SK024ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK024ShowPrint'),
+ loading: () =>
+})
+const SK026ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK026ShowPrint'),
+ loading: () =>
+})
+const SK027ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK027ShowPrint'),
+ loading: () =>
+})
+const SK031ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK031ShowPrint'),
+ loading: () =>
+})
+const SK033ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK033ShowPrint'),
+ loading: () =>
+})
+const SK035ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK035ShowPrint'),
+ loading: () =>
+})
+const SK035CheckLibrary = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK035CheckLibrary'),
+ loading: () =>
+})
+const SK037ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK037ShowPrint'),
+ loading: () =>
+})
+const SK039ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK039ShowPrint'),
+ loading: () =>
+})
+const SK041ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK041ShowPrint'),
+ loading: () =>
+})
+const SK043ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK043ShowPrint'),
+ loading: () =>
+})
+const SK045ShowPrint = Loadable({
+ loader: () => import('../components/CustomPages/SK/SK045ShowPrint'),
+ loading: () =>
+})
+// const WB002ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB002ShowPrint'),
// loading: () =>
// })
-// const HM104ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/HM/HM104ShowPrint'),
+// const WB004ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB004ShowPrint'),
// loading: () =>
// })
-// const PE027ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/PE/PE027ShowPrint'),
+// const WB006ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB006ShowPrint'),
// loading: () =>
// })
-// const OG010ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/OG/OG010ShowPrint'),
+// const WB008Operate = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB008Operate'),
// loading: () =>
// })
-// const PT014ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/PT/PT014ShowPrint'),
+// const WB008ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB008ShowPrint'),
// loading: () =>
// })
-// const PR003ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/PR/PR003ShowPrint'),
+// const WB008PaperPage = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB008PaperPage'),
// loading: () =>
// })
-// const OG027ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/OG/OG027ShowPrint'),
+// const WB008VideoPage = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB008VideoPage'),
// loading: () =>
// })
-// const OG001ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/OG/OG001ShowPrint'),
+// const WB008ConfirmPage = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB008ConfirmPage'),
// loading: () =>
// })
-// const LR009ShowPrint = Loadable({
-// loader: () => import('../components/CustomPages/LR/LR009ShowPrint'),
+// const WB013ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB013ShowPrint'),
// loading: () =>
// })
-
-// const SelectUser = Loadable({
-// loader: () => import('../components/CustomPages/FM/SelectUser'),
+// const WB019ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB019ShowPrint'),
+// loading: () =>
+// })
+// const WB021ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB021ShowPrint'),
+// loading: () =>
+// })
+// const WB023ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB023ShowPrint'),
+// loading: () =>
+// })
+// const WB025ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB025ShowPrint'),
+// loading: () =>
+// })
+// const WB027ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB027ShowPrint'),
+// loading: () =>
+// })
+// const WB029ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB029ShowPrint'),
+// loading: () =>
+// })
+// const WB031ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB031ShowPrint'),
+// loading: () =>
+// })
+// const WB037ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB037ShowPrint'),
+// loading: () =>
+// })
+// const WB039ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB039ShowPrint'),
+// loading: () =>
+// })
+// const WB052ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB052ShowPrint'),
+// loading: () =>
+// })
+// const WB053ShowPrint = Loadable({
+// loader: () => import('../components/CustomPages/WB/WB053ShowPrint'),
// loading: () =>
// })
-
-const WB002ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB002ShowPrint'),
- loading: () =>
-})
-const WB004ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB004ShowPrint'),
- loading: () =>
-})
-const WB006ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB006ShowPrint'),
- loading: () =>
-})
-const WB008Operate = Loadable({
- loader: () => import('../components/CustomPages/WB/WB008Operate'),
- loading: () =>
-})
-const WB008ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB008ShowPrint'),
- loading: () =>
-})
-const WB008PaperPage = Loadable({
- loader: () => import('../components/CustomPages/WB/WB008PaperPage'),
- loading: () =>
-})
-const WB008VideoPage = Loadable({
- loader: () => import('../components/CustomPages/WB/WB008VideoPage'),
- loading: () =>
-})
-const WB008ConfirmPage = Loadable({
- loader: () => import('../components/CustomPages/WB/WB008ConfirmPage'),
- loading: () =>
-})
-const WB013ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB013ShowPrint'),
- loading: () =>
-})
-const WB019ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB019ShowPrint'),
- loading: () =>
-})
-const WB021ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB021ShowPrint'),
- loading: () =>
-})
-const WB023ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB023ShowPrint'),
- loading: () =>
-})
-const WB025ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB025ShowPrint'),
- loading: () =>
-})
-const WB027ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB027ShowPrint'),
- loading: () =>
-})
-const WB029ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB029ShowPrint'),
- loading: () =>
-})
-const WB031ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB031ShowPrint'),
- loading: () =>
-})
-const WB037ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB037ShowPrint'),
- loading: () =>
-})
-const WB039ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB039ShowPrint'),
- loading: () =>
-})
-const WB052ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB052ShowPrint'),
- loading: () =>
-})
-const WB053ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/WB/WB053ShowPrint'),
- loading: () =>
-})
-
-
-const SE018EditPage = Loadable({
- loader: () => import('../components/CustomPages/SE/SE018EditPage'),
- loading: () =>
-})
-const SE001EditPage = Loadable({
- loader: () => import('../components/CustomPages/SE/SE001EditPage'),
- loading: () =>
-})
-const SEConfigPage = Loadable({
- loader: () => import('../components/CustomPages/SE/SEConfigPage'),
- loading: () =>
-})
-const SE005ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE005ShowPrint'),
- loading: () =>
-})
-const SESafeSurveyTest = Loadable({
- loader: () => import('../components/CustomPages/SE/SESafeSurveyTest'),
- loading: () =>
-})
-const SE005ReportEdit = Loadable({
- loader: () => import('../components/CustomPages/SE/SE005ReportEdit'),
- loading: () =>
-})
-const SE007ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE007ShowPrint'),
- loading: () =>
-})
-const SE007AllView = Loadable({
- loader: () => import('../components/CustomPages/SE/SE007AllView'),
- loading: () =>
-})
-const SE009ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE009ShowPrint'),
- loading: () =>
-})
-const SE011ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE011ShowPrint'),
- loading: () =>
-})
-const SE013ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE013ShowPrint'),
- loading: () =>
-})
-const SE015ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE015ShowPrint'),
- loading: () =>
-})
-const SE018PaperPage = Loadable({
- loader: () => import('../components/CustomPages/SE/SE018PaperPage'),
- loading: () =>
-})
-const SE019ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE019ShowPrint'),
- loading: () =>
-})
-const SE021ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE021ShowPrint'),
- loading: () =>
-})
-const SE061ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE061ShowPrint'),
- loading: () =>
-})
-const SE061PaperPage = Loadable({
- loader: () => import('../components/CustomPages/SE/SE061PaperPage'),
- loading: () =>
-})
-const SE062ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE062ShowPrint'),
- loading: () =>
-})
-const SE051ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/SE/SE051ShowPrint'),
- loading: () =>
-})
-
-const FMRoleEditPage = Loadable({
- loader: () => import('../components/CustomPages/FM/RoleEditPage'),
- loading: () =>
-})
-
-const OG011ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG011ShowPrint'),
- loading: () =>
-})
-const OG010ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG010ShowPrint'),
- loading: () =>
-})
-const OG003ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG003ShowPrint'),
- loading: () =>
-})
-const OG013ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG013ShowPrint'),
- loading: () =>
-})
-const OG015ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG015ShowPrint'),
- loading: () =>
-})
-const OG023ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG023ShowPrint'),
- loading: () =>
-})
-const OG025ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG025ShowPrint'),
- loading: () =>
-})
-const OG031ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG031ShowPrint'),
- loading: () =>
-})
-const OG059ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/OG/OG059ShowPrint'),
- loading: () =>
-})
-
-const FO003ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/FO/FO003ShowPrint'),
- loading: () =>
-})
-
-const FO025ShowPrint = Loadable({
- loader: () => import('../components/CustomPages/FO/FO025ShowPrint'),
- loading: () =>
-})
export default function (componentName, formId, formParam, data, formCode, formData) {
return {
- FO003ShowPrint: ,
- FO025ShowPrint: ,
- // SelectUser: ,
- // LR009ShowPrint: ,
- OG003ShowPrint: ,
- OG013ShowPrint: ,
- OG059ShowPrint: ,
-
- OG015ShowPrint: ,
- OG023ShowPrint: ,
- OG025ShowPrint: ,
- OG031ShowPrint: ,
-
- // OG027ShowPrint: ,
- // PR003ShowPrint: ,
- // PT014ShowPrint: ,
- // OG010ShowPrint: ,
- // PE027ShowPrint: ,
- // HM104ShowPrint: ,
- // PR023ShowPrint: ,
- OG011ShowPrint: ,
- OG010ShowPrint: ,
- FMRoleEditPage: ,
FMUserEditPage: ,
FMUserEditPageAuth: ,
- PFFormConfigByNamePage: ,
+ FMUserGroupEditPage: ,
+ FMRoleGroupEditPage: ,
+ FMRoleEditPage: ,
FM204ShowPrint: ,
- BI050BSSafeCheck: ,
- BI051BSCompanyYear: ,
- BI052BSSafeCheckYear: ,
- BI053BSSafeCheckYear: ,
- BI054HomeDetail: ,
- BI055HomeDetail: ,
- BI056Performance: ,
- BI056Dilg1_1: ,
- BI056Dilg1_2: ,
- BI056Dilg2_1: ,
- BI056Dilg2_2: ,
- BI056Dilg3_1: ,
- BI056Dilg3_2: ,
- BI060MapeShow: ,
- BI060MapePoint: ,
- BI061MapeGISShow: ,
- BI001: ,
+ PFCustomPageConfigPage: ,
+ FMBaseConfig: ,
+ PFFlowSchemesEditPage: ,
+ PFFlowSchemesShowPage: ,
+ PFFlowPermitEditPage: ,
+ PFFormConfigSqlPage: ,
+ PF147ShowPrint: ,
+ WOSOPViewPage: ,
+ FMCustomImportPage: ,
+ FMNodeSchedulingPage: ,
+ PFEntitySqlPage: ,
+ PFInitDestOrgPage: ,
+ PFEntityFieldListPage: ,
+ PFExecuteSqlPage: ,
+ PFSendInfoToClientPage: ,
+ PFFormConfigByNamePage: ,
+ BDPictureEditPage: ,
+ BDHmiPage: ,
+ BDWordPage: ,
+
+ CloseTasks: ,
+ FO003ShowPrint: ,
+ FO003ShowPrintJD: ,
+ FO005ShowPrint: ,
+ ChangeShfitRecord: ,
+ HM047ShowPrint: ,
+ HM040ShowPrint: ,
+ HM042ShowPrint: ,
+ HM001ShowPrint: ,
+ HM061ShowPrint: ,
+ HM063ShowPrint: ,
+ HM101ShowPrint: ,
+ HM099ShowPrint: ,
+ HM121ShowPrint: ,
+ HM129ShowPrint: ,
+
+ FO017ShowPrint: ,
+ FO017ShowPrintJD: ,
+ FO008ShowPrint: ,
+ FO019ShowPrint: ,
+ FO021ShowPrint: ,
+ FO022ShowPrint: ,
+ FO021EditPage: ,
+ FO015ShowPrint: ,
SC028ShowPrint: ,
SC022Import: ,
+ PT027Import: ,
SC030ShowPrint: ,
SC030View: ,
SC030ShowPrintPer: ,
SC030ShowPrintView: ,
- SC046ShowPrint: ,
- SC052ShowPrint: ,
-
-
- BS026ShowPrint: ,
- BS034EditPage: ,
- BS034ShowPrint: ,
- BS034View: ,
- BS006ShowPrint: ,
- BS006View: ,
- BS042ShowPrint: ,
- BS042ActualCheck: ,
- BS044ShowPrint: ,
- BS044Check: ,
- BS044Notice: ,
- BS044EditPage: ,
- BS044ShowPrintDOut: ,
- BS046ShowPrint: ,
- BS048ShowPrint: ,
- BS049ShowPrint: ,
- BS032ShowPrint: ,
- BS064ShowPrint: ,
- BS069ShowPrint: ,
- BS070ShowPrint: ,
- BS073ShowPrint: ,
- BS072ShowPrint: ,
- BS074ShowPrint: ,
- BS076ShowOperateLog: ,
-
- OG034EditPage: ,
- FileViewerShow: ,
+ SC073ShowPrint: ,
+ HM104ShowPrint: ,
+ HM087ShowPrint: ,
+ HM109ShowPrint: ,
+ HM107ShowPrint: ,
+ HM111ShowPrint: ,
+ HM123ShowPrint: ,
+ HMTasks: ,
+ FoPreOperSch: ,
+ FoTeamActivityShowPrint: ,
PFCommonApprove: ,
PFCommonApproveView: ,
- PFFormConfigSqlPage: ,
- PF147ShowPrint: ,
-
- AE006ShowPrint: ,
- AE008ShowPrint: ,
- AE010ShowPrint: ,
- AE019ShowPrint: ,
- AE018ShowPrint: ,
-
- // CM018ShowPrint: ,
- // CM023ShowPrint: ,
- // CM026ShowPrint: ,
- // CM026Edit: ,
- // CM030ShowPrint: ,
- // CM032ShowPrint: ,
- // CM031ShowPrint: ,
- // CM002ShowPrint: ,
- CM034ShowPrint: ,
- // CM036Edit: ,
- // CM036ShowPrint: ,
- // CM041LibShow: ,
- // CM043ShowPrint: ,
- // CM045ShowPrint: ,
-
- DM010ShowPrint: ,
- DM032ShowPrint: ,
-
- // OH003ShowPrint: ,
- // OH005ShowPrint: ,
- // OH006ShowPrint: ,
- // OH010ShowPrint: ,
- // OH012ShowPrint: ,
- // OH017Import: ,
- // OH024ShowPrint: ,
- // OH028ShowPrint: ,
- // OH034ShowPrint: ,
-
- // TI008ShowPrint: ,
- // TI008ShowPrints: ,
- // TI010ShowPrint: ,
- // TI012ShowPrint: ,
- // TI014ShowPrint: ,
- // TI016ShowPrint: ,
- // TI018ShowPrint: ,
- // TI021ShowPrint: ,
- // TL037ShowPrint: ,
- // TL039ShowPrint: ,
- // TL041ShowPrint: ,
- // TL043ShowPrint: ,
- // TL044ShowPrint: ,
- // TL046ShowPrint: ,
-
- // TL004ShowPrint: ,
- // TL006ShowPrint: ,
- // TL008ShowPrint: ,
- // TL010ShowPrint: ,
- // TL014ShowPrint: ,
- // TL016ShowPrint: ,
- // TL018ShowPrint: ,
- // TL023ShowPrint: ,
- // TL025ShowPrint: ,
- // TL027ShowPrint: ,
- // TL029ShowPrint: ,
-
- SE063ShowPrint: ,
- WB002ShowPrint: ,
- WB004ShowPrint: ,
- WB006ShowPrint: ,
- WB008Operate: ,
- WB008ShowPrint: ,
- WB008PaperPage: ,
- WB008VideoPage: ,
- WB008ConfirmPage: ,
- WB013ShowPrint: ,
- WB019ShowPrint: ,
- WB021ShowPrint: ,
- WB023ShowPrint: ,
- WB025ShowPrint: ,
- WB027ShowPrint: ,
- WB029ShowPrint: ,
- WB031ShowPrint: ,
- WB037ShowPrint: ,
- WB039ShowPrint: ,
- WB052ShowPrint: ,
- WB053ShowPrint: ,
+ PFTodayReminder: ,
+ SelectUser: ,
+ // BS026ShowPrint: ,
+ // BS032ShowPrint: ,
+ // BS034EditPage: ,
+ // BS034ShowPrint: ,
+ // BS034View: ,
+ // BS006ShowPrint: ,
+ // BS006View: ,
+ // BS042ShowPrint: ,
+ // BS042ActualCheck: ,
+ // BS044ShowPrint: ,
+ // BS044Check: ,
+ // BS044Notice: ,
+ // BS044EditPage: ,
+ // BS044ShowPrintDOut: ,
+ // BS046ShowPrint: ,
+ // BS048ShowPrint: ,
+ // BS049ShowPrint: ,
+ // BS064ShowPrint: ,
+ // BS069ShowPrint: ,
+ // BS070ShowPrint: ,
+ // BS072ShowPrint: ,
+ // BS074ShowPrint: ,
+ // BS073ShowPrint: ,
+ FileViewerShow: ,
+ BS076ShowOperateLog: ,
+ PreMeetingTask: ,
+ PreOperSchTask: ,
+ PF132ShowPrint: ,
+ RiskSubmit: ,
+ CrucialLicenseJob: ,
SE001EditPage: ,
SEConfigPage: ,
SE005ShowPrint: ,
@@ -926,6 +1590,246 @@ export default function (componentName, formId, formParam, data, formCode, formD
SE063ShowPrint: ,
SE051ShowPrint: ,
+ // LR001ShowPrint: ,
+ // LR007Edit: ,
+ // LR003ShowPrint: ,
+ // LR007ShowPrint: ,
+ // LR009ShowPrint: ,
+ SCShowPrint: ,
+
+
+ // OG001ShowPrint: ,
+ // OG001ReportView: ,
+ // OG003ShowPrint: ,
+ // OG005ShowPrint: ,
+ // OG005ImportPage: ,
+ // OG008ShowPrint: ,
+ // OG010ShowPrint: ,
+ // OG011ShowPrint: ,
+ // OG013ShowPrint: ,
+ // OG015ShowPrint: ,
+ // OG023ShowPrint: ,
+ // OG025ShowPrint: ,
+ // OG027ShowPrint: ,
+ // OG030ShowPrint: ,
+ // OG030ReplyView: ,
+ // OG031ShowPrint: ,
+ // OG034EditPage: ,
+ // OG018Check: ,
+ // OG020Edit: ,
+ // OG059EditPage: ,
+ // OG059ShowPrint: ,
+ // OG059UserView: ,
+
+ // PT014ShowPrint: ,
+ // PT017ShowPrint: ,
+ // TI008ShowPrint: ,
+ // TI008ShowPrints: ,
+ // TI010ShowPrint: ,
+ // TI012ShowPrint: ,
+ // TI014ShowPrint: ,
+ // TI016ShowPrint: ,
+ // TI018ShowPrint: ,
+ // TI021ShowPrint: ,
+ // AE006ShowPrint: ,
+ // AE008ShowPrint: ,
+ // AE010ShowPrint: ,
+ // AE019ShowPrint: ,
+ // AE018ShowPrint: ,
+
+ // PT020ShowPrint: ,
+ // PT024ShowPrint: ,
+ // PT029ShowPrint: ,
+ // PT013ShowPrint: ,
+ // PT036ShowPrint: ,
+ // PT040ShowPrint: ,
+ // PE005ShowPrint: ,
+ // PE007ShowPrint: ,
+ // PE009ShowPrint: ,
+ // PE019ShowPrint: ,
+ // PE021ShowPrint: ,
+ // PE022ShowPrint: ,
+ // PE027ShowPrint: ,
+ // PE029ShowPrint: ,
+ // PE029ShowPrintNew: ,
+ // PE030ShowPrint: ,
+
+ // OH003ShowPrint: ,
+ // OH005ShowPrint: ,
+ // OH006ShowPrint: ,
+ // OH010ShowPrint: ,
+ // OH012ShowPrint: ,
+ // OH017Import: ,
+ // OH024ShowPrint: ,
+ // OH028ShowPrint: ,
+ // OH034ShowPrint: ,
+
+ SC046ShowPrint: ,
+ SC052ShowPrint: ,
+
+ // CM018ShowPrint: ,
+ // CM023ShowPrint: ,
+ // CM026ShowPrint: ,
+ // CM026Edit: ,
+ // CM030ShowPrint: ,
+ // CM032ShowPrint: ,
+ // CM031ShowPrint: ,
+ // CM002ShowPrint: ,
+ // CM034ShowPrint: ,
+ // CM036Edit: ,
+ // CM036ShowPrint: ,
+ // CM041LibShow: ,
+ // CM043ShowPrint: ,
+ // CM045ShowPrint: ,
+
+ // PR003ShowPrint: ,
+ // PR007ShowPrint: ,
+ // PR009ShowPrint: ,
+ // PR011ShowPrint: ,
+ // PR013ShowPrint: ,
+ // PR015ShowPrint: ,
+ // PR019ShowPrint: ,
+ // PR023ShowPrint: ,
+ // PR026ShowPrint: ,
+ // PR028ShowPrint: ,
+ // PR046ShowPrint: ,
+ // PR048ShowPrint: ,
+ // PR050ShowPrint: ,
+ // PR052ShowPrint: ,
+ // PR056ShowPrint: ,
+ // PR058ShowPrint: ,
+ // PR060ShowPrint: ,
+ // PR062ShowPrint: ,
+ // PR064ShowPrint: ,
+ // PR066ShowPrint: ,
+ // PR068ShowPrint: ,
+ // DM019ShowPrint: ,
+ // DM021ShowPrint: ,
+ // DM012ShowPrint: ,
+ // DM002ShowPrintCheck: ,
+ // DM008ShowPrint: ,
+ // DM008ShowSummary: ,
+ // DM009ShowPrint: ,
+ // DM010ShowPrint: ,
+ // DM032ShowPrint: ,
+ // DM014ShowPrint: ,
+ // DM016ShowPrint: ,
+ // DM026ShowPrint: ,
+ // DM030ShowPrint: ,
+ // DM036ShowPrint: ,
+ // DM045ShowPrint: ,
+ BIView: ,
+ BI001: ,
+ BI050BSSafeCheck: ,
+ BI051BSCompanyYear: ,
+ BI052BSSafeCheckYear: ,
+ BI053BSSafeCheckYear: ,
+ BI054HomeDetail: ,
+ BI055HomeDetail: ,
+ BI056Performance: ,
+ BI056Dilg1_1: ,
+ BI056Dilg1_2: ,
+ BI056Dilg2_1: ,
+ BI056Dilg2_2: ,
+ BI056Dilg3_1: ,
+ BI056Dilg3_2: ,
+ BI003StatiscialAnalysis: ,
+ BI001HomeDetail: ,
+ BI002HomeDetail: ,
+ BI004FormRunAnalysis: ,
+ BI005LoginRecord: ,
+ BI006FormRunAnalysis: ,
+ BI006FormRunAnalysisNew: ,
+ BI007FormRunAnalysis: ,
+ BI007FormRunAnalysisNew: ,
+ BI008FormRunAnalysis: ,
+ BI009RiskAnalysis: ,
+ BI010FormRunAnalysis: ,
+ BI011FormRunAnalysis: ,
+ BI011TrainSafeAnalysis: ,
+ BI012NotificationTaskAnalysis: ,
+ BI013RiskAnalysisModel: ,
+ BI014RiskPerformanceModel: ,
+ BI030FormRunAnalysis: ,
+ BI060MapeShow: ,
+ BI060MapePoint: ,
+ BI061MapeGISShow: ,
+ PF136FormRunAnalysis: ,
+ PF139FormRunAnalysis: ,
+ BI009FormRunAnalysis: ,
+ FO025ShowPrint: ,
+ // TL037ShowPrint: ,
+ // TL039ShowPrint: ,
+ // TL041ShowPrint: ,
+ // TL043ShowPrint: ,
+ // TL044ShowPrint: ,
+ // TL046ShowPrint: ,
+
+ // TL004ShowPrint: ,
+ // TL006ShowPrint: ,
+ // TL008ShowPrint: ,
+ // TL010ShowPrint: ,
+ // TL014ShowPrint: ,
+ // TL016ShowPrint: ,
+ // TL018ShowPrint: ,
+ // TL023ShowPrint: ,
+ // TL025ShowPrint: ,
+ // TL027ShowPrint: ,
+ // TL029ShowPrint: ,
+ BI020ApproveAnalysis: ,
+ DM034ShowPrint: ,
+ BI012FormRunAnalysis: ,
+ FM202ShowPrint: ,
+ PFApproveRole: ,
+ SK002ShowPrint: ,
+ SK002CheckList: ,
+ SK002ShowSummary: ,
+ SK004ShowPrint: ,
+ SK004CheckList: ,
+ SK004CheckPost: ,
+ SK004ShowSummary: ,
+ SK004Import: ,
+ SK006ShowPrint: ,
+ SK006ShowOperateLog: ,
+ SK010ShowPrint: ,
+ SK012ShowPrint: ,
+ SK014ShowPrint: ,
+ SK010CheckList: ,
+ SK016ShowPrint: ,
+ SK018ShowPrint: ,
+ SK020ShowPrint: ,
+ SK022ShowPrint: ,
+ SK024ShowPrint: ,
+ SK026ShowPrint: ,
+ SK027ShowPrint: ,
+ SK031ShowPrint: ,
+ SK033ShowPrint: ,
+ SK035ShowPrint: ,
+ SK035CheckLibrary: ,
+ SK037ShowPrint: ,
+ SK039ShowPrint: ,
+ SK041ShowPrint: ,
+ SK043ShowPrint: ,
+ SK045ShowPrint: ,
+ // WB002ShowPrint: ,
+ // WB004ShowPrint: ,
+ // WB006ShowPrint: ,
+ // WB008ShowPrint: ,
+ // WB008Operate: ,
+ // WB008PaperPage: ,
+ // WB008VideoPage: ,
+ // WB008ConfirmPage: ,
+ // WB013ShowPrint: ,
+ // WB019ShowPrint: ,
+ // WB021ShowPrint: ,
+ // WB023ShowPrint: ,
+ // WB025ShowPrint: ,
+ // WB027ShowPrint: ,
+ // WB029ShowPrint: ,
+ // WB031ShowPrint: ,
+ // WB037ShowPrint: ,
+ // WB039ShowPrint: ,
+ // WB052ShowPrint: ,
+ // WB053ShowPrint: ,
}[componentName]
}
-