Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c9768baf
提交
c9768baf
authored
5月 28, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
19711 流程发起页面支持url传表单参数
上级
6b259bfb
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
118 行增加
和
2 行删除
+118
-2
JustApply.js
FormInsertDiy/AffairPage/ApplyPage/JustApply.js
+106
-0
index.js
FormInsertDiy/AffairPage/ApplyPage/index.js
+12
-2
没有找到文件。
FormInsertDiy/AffairPage/ApplyPage/JustApply.js
0 → 100644
浏览文件 @
c9768baf
/**
* 只包含一站式流程的申请页面 会带部分字段参数到申请表单
* 返回也是返回到上一个路由
* */
import
{
message
}
from
"antd"
;
import
React
,
{
Fragment
}
from
"react"
;
import
{
getToken
}
from
"@/utils/authority"
;
import
PageHeaderWrapper
from
"@/components/PageHeaderWrapper"
;
import
ButtonDiy
from
"@/baseComponent/ButtonDiy"
;
import
Shell
from
"@/baseComponent/Shell"
;
import
config
from
"@/config/config"
;
import
router
from
"umi/router"
;
export
default
class
AffairPage
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
let
state
=
this
.
props
.
location
.
state
;
if
(
!
state
||
!
state
.
id
){
console
.
error
(
'无法获取流程id'
,
'JustApply.js'
);
}
this
.
state
=
{
workId
:
state
.
id
,
init
:
{...
state
},
};
};
componentDidMount
()
{
if
(
!
getToken
())
{
message
.
error
(
"您的数据未同步,请联系管理员!"
);
return
false
;
}
window
.
addEventListener
(
"message"
,
(
event
)
=>
{
// 和Iframe页进行通迅
if
(
event
.
data
===
"returnList"
)
{
this
.
returnList
(
true
);
}
if
(
event
&&
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
"iframeHeight"
)
>
-
1
)
{
let
height
=
Number
(
event
.
data
.
split
(
"-"
)[
1
]);
const
iframe
=
document
.
getElementById
(
"applyIframeId"
);
if
(
iframe
)
{
iframe
.
height
=
height
;
}
}
},
false
);
return
true
;
}
returnList
=
()
=>
{
router
.
goBack
();
};
render
()
{
const
{
workId
,
init
}
=
this
.
state
;
if
(
!
workId
)
{
return
null
;
}
const
url
=
config
.
onestopPC
.
split
(
"/#/"
);
let
iframeUrl
=
`
${
url
[
0
]}
/#/IFrameForApply?id=
${
workId
}
&token=
${
getToken
()}
&init=
${
encodeURIComponent
(
JSON
.
stringify
(
init
))}
`
;
console
.
log
(
iframeUrl
);
// iframeUrl = `http://localhost:8000/onestop/IFrameForApply?id=${workId}&token=${getToken()}`;
return
(
<
PageHeaderWrapper
title
=
""
>
<
div
style
=
{{
visibility
:
"visible"
,
backgroundColor
:
"#fff"
,
paddingLeft
:
"24px"
}}
>
<
Shell
>
<
div
style
=
{{
height
:
"54px"
,
padding
:
"12px 0 12px 12px"
,
display
:
"block"
,
}}
>
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{
this
.
returnList
}
icon
=
"arrow-left"
/>
<
/div
>
<
/Shell
>
<
iframe
src
=
{
iframeUrl
}
frameBorder
=
{
0
}
id
=
"applyIframeId"
name
=
"applyIframe"
marginWidth
=
"0"
marginHeight
=
"0"
allowtransparency
=
"yes"
seamless
scrolling
=
{
"auto"
}
style
=
{{
width
:
"100%"
,
minHeight
:
"800px"
,
overflowY
:
"hidden"
,
backgroundColor
:
"#fff"
}}
/
>
:
null
<
/div
>
<
/PageHeaderWrapper
>
);
}
}
FormInsertDiy/AffairPage/ApplyPage/index.js
浏览文件 @
c9768baf
...
...
@@ -12,7 +12,7 @@ import * as destructionFunc from '../destruction';
import
{
Link
}
from
'dva/router'
;
import
{
getApplyPage
}
from
'../publicApiService'
;
import
{
getToken
}
from
'@/utils/authority'
;
import
JustApply
from
'./JustApply'
;
import
PageHeaderWrapper
from
'@/components/PageHeaderWrapper'
;
import
List
from
'./List'
;
import
pageSetting
from
'./pageSetting'
;
...
...
@@ -20,7 +20,17 @@ import ButtonDiy from '@/baseComponent/ButtonDiy';
import
Shell
from
'@/baseComponent/Shell'
;
import
config
from
'@/config/config'
;
export
default
class
AffairPage
extends
React
.
Component
{
export
default
function
index
(
props
){
const
{
state
}
=
props
.
location
.
state
;
if
(
state
.
justApply
){
return
<
JustApply
{...
props
}
/>
;
}
else
{
return
<
AffairPage
{...
props
}
/>
;
}
}
class
AffairPage
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
let
pathname
=
this
.
props
.
location
.
pathname
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论