Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
d8e149ce
提交
d8e149ce
authored
3月 10, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
通过父iframe 定义公共组件让 子iframe 直接使用
上级
bd69ccbf
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
14 行增加
和
6 行删除
+14
-6
Detail.js
FormInsertDiy/AffairPage/Detail.js
+1
-1
IframeFor2.0.js
FormInsertDiy/AffairPage/IframeFor2.0.js
+1
-1
ActiveMenuComponent.js
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
+12
-4
没有找到文件。
FormInsertDiy/AffairPage/Detail.js
浏览文件 @
d8e149ce
...
@@ -45,7 +45,7 @@ export default class Detail extends Component {
...
@@ -45,7 +45,7 @@ export default class Detail extends Component {
(
event
)
=>
{
(
event
)
=>
{
if
(
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
if
(
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
const
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
const
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
console
.
log
(
height
);
//
console.log(height);
document
.
getElementById
(
'detailIframeId'
).
height
=
height
+
50
;
document
.
getElementById
(
'detailIframeId'
).
height
=
height
+
50
;
setTimeout
(()
=>
{
setTimeout
(()
=>
{
let
d
=
document
.
getElementsByClassName
(
'ant-layout-content'
);
let
d
=
document
.
getElementsByClassName
(
'ant-layout-content'
);
...
...
FormInsertDiy/AffairPage/IframeFor2.0.js
浏览文件 @
d8e149ce
...
@@ -49,7 +49,7 @@ export default class Detail extends Component {
...
@@ -49,7 +49,7 @@ export default class Detail extends Component {
(
event
)
=>
{
(
event
)
=>
{
if
(
event
&&
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
if
(
event
&&
event
.
data
&&
event
.
data
.
indexOf
&&
event
.
data
.
indexOf
(
'iframeDetailHeight'
)
>
-
1
)
{
let
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
let
height
=
Number
(
event
.
data
.
split
(
'-'
)[
1
]);
console
.
log
(
height
);
//
console.log(height);
const
iframe
=
document
.
getElementById
(
'applyIframeId'
);
const
iframe
=
document
.
getElementById
(
'applyIframeId'
);
if
(
iframe
&&
height
>
950
)
{
if
(
iframe
&&
height
>
950
)
{
iframe
.
height
=
height
;
iframe
.
height
=
height
;
...
...
FormInsertDiy/ExportComponent/ActiveMenuComponent.js
浏览文件 @
d8e149ce
...
@@ -4,6 +4,14 @@ import Apply from "@/webPublic/FormInsertDiy/AffairPage/ApplyPage"; // 申请
...
@@ -4,6 +4,14 @@ import Apply from "@/webPublic/FormInsertDiy/AffairPage/ApplyPage"; // 申请
import
BatchAudit
from
"@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudit"
;
// 批量审批
import
BatchAudit
from
"@/webPublic/FormInsertDiy/AffairPage/AuditPage/BatchAudit"
;
// 批量审批
import
Audit
from
"@/webPublic/FormInsertDiy/AffairPage/AuditPage/index.js"
;
// 审批
import
Audit
from
"@/webPublic/FormInsertDiy/AffairPage/AuditPage/index.js"
;
// 审批
import
Detail
from
"@/webPublic/FormInsertDiy/AffairPage/Detail"
;
//详情
import
Detail
from
"@/webPublic/FormInsertDiy/AffairPage/Detail"
;
//详情
import
{
Modal
,
message
,
notification
}
from
'antd'
;
window
.
iframeParentComponent
=
{
Modal
,
message
,
notification
,
};
export
default
function
ActiveMenuComponent
({
export
default
function
ActiveMenuComponent
({
routerConfig
,
routerConfig
,
...
otherProps
...
otherProps
...
@@ -14,16 +22,16 @@ export default function ActiveMenuComponent({
...
@@ -14,16 +22,16 @@ export default function ActiveMenuComponent({
case
"CheckRecord"
:
// 查询类应用
case
"CheckRecord"
:
// 查询类应用
return
<
CheckRecord
workId
=
{
appId
}
return
<
CheckRecord
workId
=
{
appId
}
/>
;
/>
;
case
"Apply"
:
// 申请类
case
"Apply"
:
// 申请类
详情是 iframe
return
<
Apply
return
<
Apply
workId
=
{
appId
}
{...
otherProps
}
/>
;
workId
=
{
appId
}
{...
otherProps
}
/>
;
case
"Audit"
:
// 审批类
case
"Audit"
:
// 审批类
详情是 iframe
return
<
Audit
return
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
workId
=
{
appId
}
{...
otherProps
}
/>
;
case
"BatchAudit"
:
// 批量审批
case
"BatchAudit"
:
// 批量审批
详情是 iframe
return
<
Audit
return
<
Audit
workId
=
{
appId
}
{...
otherProps
}
/>
;
workId
=
{
appId
}
{...
otherProps
}
/>
;
case
"Detail"
:
// 详情
case
"Detail"
:
// 详情
iframe
return
<
Detail
return
<
Detail
{...
otherProps
}
{...
otherProps
}
/>
;
{...
otherProps
}
{...
otherProps
}
/>
;
default
:
default
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论