Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c8e7f90f
提交
c8e7f90f
authored
11月 07, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
文件名修改
上级
310672bf
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
57 行增加
和
6 行删除
+57
-6
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+8
-4
ApplyMerge.js
FormInsertDiy/ExportComponent/ApplyMerge.js
+1
-1
AuditMerge.js
FormInsertDiy/ExportComponent/AuditMerge.js
+1
-1
CheckRecordMerge.js
FormInsertDiy/ExportComponent/CheckRecordMerge.js
+47
-0
没有找到文件。
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
c8e7f90f
...
...
@@ -14,8 +14,9 @@ import { connect } from 'dva';
import
router
from
'umi/router'
;
import
{
getIsQian_Nan
}
from
'@/webPublic/zyd_public/utils/getSchoolType'
;
import
exportHandledInfo
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/exportHandledInfo'
;
import
ApplyMerage
from
'@/webPublic/FormInsertDiy/ExportComponent/ApplyMerage'
;
import
AuditMerage
from
'@/webPublic/FormInsertDiy/ExportComponent/AuditMerage'
;
import
ApplyMerge
from
'./ApplyMerge'
;
// merge
import
AuditMerge
from
'./AuditMerge'
;
import
CheckRecordMerge
from
'./CheckRecordMerge'
;
export
const
CreateC
=
createContext
({
routerConfig
:
{},
...
...
@@ -59,6 +60,9 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
case
'CheckRecord'
:
// 查询类应用
Res
=
<
CheckRecord
workId
=
{
appId
}
/>
;
break
;
case
'CheckRecordMerage'
:
// 查询类应用聚合
Res
=
<
CheckRecordMerge
routerConfig
=
{
routerConfig
}
/>
;
break
;
case
'Apply'
:
// 申请类
if
(
appId
===
'1549319936277479424'
)
{
// 29573 当前位置: 违纪管理/违纪上报(辅导员),100086 下面这个模块做个超链接 搞到这儿来
...
...
@@ -78,7 +82,7 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
Res
=
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'ApplyMerage'
:
// 申请页面聚合 多个流程的申请页面放在一起
Res
=
<
ApplyMer
a
ge
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
Res
=
<
ApplyMerge
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
break
;
case
'Audit'
:
// 审批类
Res
=
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
...
...
@@ -104,7 +108,7 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
Res
=
<
BatchAudit
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'AuditMerage'
:
// 审核页面聚合 多个流程的审核页面放在一起
Res
=
<
AuditMer
a
ge
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
Res
=
<
AuditMerge
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
break
;
case
'Detail'
:
// 详情
Res
=
<
Detail
{...
otherProps
}
/>
;
...
...
FormInsertDiy/ExportComponent/ApplyMer
a
ge.js
→
FormInsertDiy/ExportComponent/ApplyMerge.js
浏览文件 @
c8e7f90f
...
...
@@ -4,7 +4,7 @@ const TabPane = Tabs.TabPane;
import
Apply
from
'@/webPublic/FormInsertDiy/AffairPage/ApplyPage'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
// 申请
export
default
function
ApplyMer
a
ge
(
props
)
{
export
default
function
ApplyMerge
(
props
)
{
let
settingJson
=
isJSON
(
props
.
routerConfig
?.
settingJson
)
?
JSON
.
parse
(
props
.
routerConfig
?.
settingJson
)
:
[];
if
(
!
settingJson
||
!
Array
.
isArray
(
settingJson
)){
console
.
log
(
'settingJson 不是一个数组 无法渲染!'
);
...
...
FormInsertDiy/ExportComponent/AuditMer
a
ge.js
→
FormInsertDiy/ExportComponent/AuditMerge.js
浏览文件 @
c8e7f90f
...
...
@@ -5,7 +5,7 @@ import BatchAudit from '@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudi
import
Audit
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/index.js'
;
// 审批
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
// 申请
export
default
function
AuditMer
a
ge
(
props
)
{
export
default
function
AuditMerge
(
props
)
{
let
settingJson
=
isJSON
(
props
.
routerConfig
?.
settingJson
)
?
JSON
.
parse
(
props
.
routerConfig
?.
settingJson
)
:
[];
if
(
!
Array
.
isArray
(
settingJson
)
||
!
settingJson
.
length
){
console
.
log
(
'settingJson 不是一个数组 无法渲染!'
);
...
...
FormInsertDiy/ExportComponent/CheckRecordMerge.js
0 → 100644
浏览文件 @
c8e7f90f
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Tabs
}
from
'antd'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
// 申请
import
CheckRecord
from
'@/webPublic/FormInsertDiy/ExportComponent/CheckRecord'
;
const
TabPane
=
Tabs
.
TabPane
;
export
default
function
CheckRecordMerge
(
props
)
{
let
settingJson
=
isJSON
(
props
.
routerConfig
?.
settingJson
)
?
JSON
.
parse
(
props
.
routerConfig
?.
settingJson
)
:
[];
if
(
!
Array
.
isArray
(
settingJson
)
||
!
settingJson
.
length
){
console
.
log
(
'settingJson 不是一个数组 无法渲染!'
);
return
null
;
}
console
.
log
(
settingJson
);
const
[
activeKey
,
setActiveKey
]
=
useState
(
settingJson
[
0
].
appId
);
const
changeActiveKey
=
(
a
)
=>
{
setActiveKey
(
a
);
};
useEffect
(()
=>
{
},
[]);
if
(
!
activeKey
)
{
return
null
;
}
console
.
log
(
settingJson
);
return
(
<
Tabs
activeKey
=
{
activeKey
}
hideAdd
=
{
true
}
style
=
{{
backgroundColor
:
'#fff'
}}
onChange
=
{
changeActiveKey
}
>
{
settingJson
.
map
((
g
)
=>
{
const
Component
=
CheckRecord
;
return
(
<
TabPane
tab
=
{
g
.
name
}
key
=
{
g
.
appId
}
>
{
activeKey
===
g
.
appId
?
<
Component
workId
=
{
g
.
appId
}
{...
props
}
/> : nul
l
}
<
/TabPane>
)
;
})
}
<
/Tabs
>
);
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论