Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
17096f97
提交
17096f97
authored
5月 26, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化组件申请组件
上级
d610672e
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
46 行增加
和
25 行删除
+46
-25
JustApply.js
FormInsertDiy/AffairPage/ApplyPage/JustApply.js
+16
-11
index.js
FormInsertDiy/AffairPage/ApplyPage/index.js
+30
-14
没有找到文件。
FormInsertDiy/AffairPage/ApplyPage/JustApply.js
浏览文件 @
17096f97
...
...
@@ -4,14 +4,16 @@
* */
import
{
message
}
from
'antd'
;
import
React
,
{
Fragment
}
from
'react'
;
import
React
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 config from '@/config/config';
import
router
from
'umi/router'
;
import
ApplyForZyd
from
'@/webPublic/one_stop_public/ForZydApply/index'
;
export
default
class
AffairPage
extends
React
.
Component
{
constructor
(
props
)
{
...
...
@@ -61,13 +63,11 @@ export default class AffairPage extends React.Component {
if
(
!
workId
)
{
return
null
;
}
const
url
=
config
.
onestopPC
.
split
(
'/#/'
);
const
params
=
`id=
${
workId
}
&token=
${
getToken
()}
&init=
${
encodeURIComponent
(
JSON
.
stringify
(
init
),
)}
`
;
let
iframeUrl
=
`
${
url
[
0
]}
/#/IFrameForApply?
${
params
}
`
;
console
.
log
(
iframeUrl
);
// iframeUrl = `http://localhost:8001/onestop/IFrameForApply?${params}`;
// const url = config.onestopPC.split('/#/');
// const params = `id=${workId}&token=${getToken()}&init=${encodeURIComponent(
// JSON.stringify(init),
// )}`;
// let iframeUrl = `${url[0]}/#/IFrameForApply?${params}`;
return
(
<
PageHeaderWrapper
title
=
""
>
<
div
...
...
@@ -91,7 +91,12 @@ export default class AffairPage extends React.Component {
/>
<
/div
>
<
/Shell
>
<
iframe
<
ApplyForZyd
{...
this
.
props
}
id
=
{
workId
}
init
=
{
encodeURIComponent
(
JSON
.
stringify
(
init
))}
/
>
{
/* <iframe
src={iframeUrl}
frameBorder={0}
id="applyIframeId"
...
...
@@ -107,7 +112,7 @@ export default class AffairPage extends React.Component {
overflowY: 'hidden',
backgroundColor: '#fff',
}}
/
>
/>
*/
}
:
null
<
/div
>
<
/PageHeaderWrapper
>
...
...
FormInsertDiy/AffairPage/ApplyPage/index.js
浏览文件 @
17096f97
...
...
@@ -5,7 +5,7 @@
*
* */
import
{
message
,
Modal
,
notification
,
Popconfirm
}
from
'antd'
;
import
{
message
}
from
'antd'
;
import
React
from
'react'
;
import
*
as
service
from
'../publicApiService'
;
import
*
as
destructionFunc
from
'../destruction'
;
...
...
@@ -18,14 +18,10 @@ import List from './List';
import
pageSetting
from
'./pageSetting'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
config
from
'@/config/config'
;
import
{
deepCopy
}
from
'@/webPublic/zyd_public/utils/utils'
;
window
.
iframeParentComponent
=
{
Modal
,
message
,
notification
,
Popconfirm
};
import
ApplyForZyd
from
'@/webPublic/one_stop_public/ForZydApply/index'
;
export
default
function
index
(
props
)
{
const
{
state
=
{}
}
=
props
.
location
;
if
(
state
.
justApply
)
{
...
...
@@ -282,10 +278,8 @@ class AffairPage extends React.Component {
return
null
;
}
// console.log(allConfigSetInfo.isCloseStart);
const
url
=
config
.
onestopPC
.
split
(
'/#/'
);
let
iframeUrl
=
iframeUrlDiy
||
`
${
url
[
0
]}
/#/IFrameForApply?id=
${
workId
}
&token=
${
getToken
()}
`
;
console
.
log
(
iframeUrl
);
// iframeUrl = `http://localhost:8000/onestop/IFrameForApply?id=${workId}&token=${getToken()}`;
// const url = config.onestopPC.split('/#/');
// let iframeUrl = iframeUrlDiy || `${url[0]}/#/IFrameForApply?id=${workId}&token=${getToken()}`;
let
buttons
=
this
.
handleButtonSet
({});
let
listConfig
=
pageSetting
.
listConfig
;
if
(
!
buttons
.
length
)
{
...
...
@@ -332,7 +326,29 @@ class AffairPage extends React.Component {
<
/div
>
<
/Shell
>
{
renderIframe
?
(
<
iframe
iframeUrlDiy
?
<
iframe
src
=
{
iframeUrlDiy
}
frameBorder
=
{
0
}
id
=
"applyIframeId"
name
=
"applyIframe"
marginWidth
=
"0"
marginHeight
=
"0"
allowTransparency
=
"yes"
seamless
scrolling
=
{
'auto'
}
style
=
{{
width
:
'100%'
,
minHeight
:
'800px'
,
overflowY
:
'hidden'
,
backgroundColor
:
'#fff'
,
}}
/>
:
<
ApplyForZyd
{...
this
.
props
}
id
=
{
workId
}
/
>
/* <iframe
src={iframeUrl}
frameBorder={0}
id="applyIframeId"
...
...
@@ -348,7 +364,7 @@ class AffairPage extends React.Component {
overflowY: 'hidden',
backgroundColor: '#fff',
}}
/
>
/>
*/
)
:
null
}
<
/div
>
<
/PageHeaderWrapper
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论