Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
310672bf
提交
310672bf
authored
11月 06, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
30839 合并菜单栏,每个模块的申请菜单做合并处理:菜单栏名字:三好学生申请
上级
15f1b815
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
98 行增加
和
0 行删除
+98
-0
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+8
-0
ApplyMerage.js
FormInsertDiy/ExportComponent/ApplyMerage.js
+43
-0
AuditMerage.js
FormInsertDiy/ExportComponent/AuditMerage.js
+47
-0
没有找到文件。
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
310672bf
...
...
@@ -14,6 +14,8 @@ 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'
;
export
const
CreateC
=
createContext
({
routerConfig
:
{},
...
...
@@ -75,6 +77,9 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
}
Res
=
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'ApplyMerage'
:
// 申请页面聚合 多个流程的申请页面放在一起
Res
=
<
ApplyMerage
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
break
;
case
'Audit'
:
// 审批类
Res
=
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
...
...
@@ -98,6 +103,9 @@ function ActiveMenuComponent({ routerConfig, ...otherProps }) {
}
Res
=
<
BatchAudit
workId
=
{
appId
}
{...
otherProps
}
/>
;
break
;
case
'AuditMerage'
:
// 审核页面聚合 多个流程的审核页面放在一起
Res
=
<
AuditMerage
{...
otherProps
}
routerConfig
=
{
routerConfig
}
/>
;
break
;
case
'Detail'
:
// 详情
Res
=
<
Detail
{...
otherProps
}
/>
;
break
;
...
...
FormInsertDiy/ExportComponent/ApplyMerage.js
0 → 100644
浏览文件 @
310672bf
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Tabs
}
from
'antd'
;
const
TabPane
=
Tabs
.
TabPane
;
import
Apply
from
'@/webPublic/FormInsertDiy/AffairPage/ApplyPage'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
// 申请
export
default
function
ApplyMerage
(
props
)
{
let
settingJson
=
isJSON
(
props
.
routerConfig
?.
settingJson
)
?
JSON
.
parse
(
props
.
routerConfig
?.
settingJson
)
:
[];
if
(
!
settingJson
||
!
Array
.
isArray
(
settingJson
)){
console
.
log
(
'settingJson 不是一个数组 无法渲染!'
);
return
null
;
}
const
[
activeKey
,
setActiveKey
]
=
useState
(
settingJson
[
0
].
appId
);
const
changeActiveKey
=
(
a
)
=>
{
setActiveKey
(
a
);
};
useEffect
(()
=>
{
},
[]);
if
(
!
activeKey
)
{
return
null
;
}
return
(
<
Tabs
activeKey
=
{
activeKey
}
hideAdd
=
{
true
}
style
=
{{
backgroundColor
:
'#fff'
}}
onChange
=
{
changeActiveKey
}
>
{
settingJson
.
map
((
g
)
=>
{
return
(
<
TabPane
tab
=
{
g
.
name
}
key
=
{
g
.
appId
}
>
{
activeKey
===
g
.
appId
?
<
Apply
workId
=
{
g
.
appId
}
{...
props
}
/> : nul
l
}
<
/TabPane>
)
;
})
}
<
/Tabs
>
);
}
FormInsertDiy/ExportComponent/AuditMerage.js
0 → 100644
浏览文件 @
310672bf
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Tabs
}
from
'antd'
;
const
TabPane
=
Tabs
.
TabPane
;
import
BatchAudit
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudit'
;
// 批量审批
import
Audit
from
'@/webPublic/FormInsertDiy/AffairPage/AuditPage/index.js'
;
// 审批
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
// 申请
export
default
function
AuditMerage
(
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
=
g
.
type
===
'BatchAudit'
?
BatchAudit
:
Audit
;
return
(
<
TabPane
tab
=
{
g
.
name
}
key
=
{
g
.
appId
}
>
{
activeKey
===
g
.
appId
?
<
Component
workId
=
{
g
.
appId
}
{...
props
}
/> : nul
l
}
<
/TabPane>
)
;
})
}
<
/Tabs
>
);
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论