Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
6ee393d4
提交
6ee393d4
authored
4月 27, 2023
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2073 开发需求1229
上级
19aa49d0
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
58 行增加
和
44 行删除
+58
-44
Detail.js
FormInsertDiy/AffairPage/Detail.js
+41
-41
index.js
FormInsertDiy/RenderForm/index.js
+15
-3
countWidth.js
one_stop_public/libs/formList/countWidth.js
+2
-0
没有找到文件。
FormInsertDiy/AffairPage/Detail.js
浏览文件 @
6ee393d4
...
...
@@ -67,41 +67,45 @@ export default class Detail extends Component {
};
getButtons
=
()
=>
{
const
{
showAll
}
=
this
.
state
;
const
{
hiddenButton
}
=
this
.
props
;
if
(
hiddenButton
){
return
null
;
}
return
(
<>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
router
.
goBack
();
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
className
=
"defaultBlue"
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
).
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
/
>
);
}
const
{
showAll
}
=
this
.
state
;
const
{
hiddenButton
,
fromCheckRecord
}
=
this
.
props
;
if
(
hiddenButton
)
{
return
null
;
}
return
(
<>
<
Shell
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
{
showAll
?
(
<
ButtonDiy
name
=
"返回"
className
=
"defaultBlue"
handleClick
=
{()
=>
{
if
(
fromCheckRecord
)
{
window
.
keepAliveCheckRecord
.
showList
();
}
else
{
router
.
goBack
();
}
}}
icon
=
"arrow-left"
/>
)
:
null
}
<
ButtonDiy
name
=
{
'全屏查看'
}
className
=
"defaultBlue"
handleClick
=
{()
=>
{
document
.
getElementById
(
'detailIframeId'
).
requestFullscreen
();
}}
/
>
<
/div
>
<
/Shell
>
<
/
>
);
};
render
()
{
const
{
from
,
hiddenButton
}
=
this
.
props
;
...
...
@@ -126,9 +130,7 @@ export default class Detail extends Component {
// console.log(showPrint);
return
(
<
PageHeaderWrapper
title
=
""
>
{
this
.
getButtons
()
}
{
this
.
getButtons
()}
<
Shell
>
{
from
===
'onestopApp2.0'
?
(
<
iframe
...
...
@@ -154,9 +156,7 @@ export default class Detail extends Component {
<
/div
>
)}
<
/Shell
>
{
this
.
getButtons
()
}
{
this
.
getButtons
()}
<
/PageHeaderWrapper
>
);
}
...
...
FormInsertDiy/RenderForm/index.js
浏览文件 @
6ee393d4
...
...
@@ -6,6 +6,17 @@ import { isJSON } from '@/webPublic/zyd_public/utils/utils';
import
SelectPerson
from
'@/webPublic/FormInsertDiy/ExportComponent/SelectPerson/Index'
;
import
Detail
from
'@/webPublic/FormInsertDiy/AffairPage/Detail'
;
const
showDiv
=
()
=>
{
document
.
getElementById
(
'listZdyTable'
).
style
.
position
=
'static'
;
document
.
getElementById
(
'listZdyTable'
).
style
.
zIndex
=
'auto'
;
};
const
hideDiv
=
()
=>
{
document
.
getElementById
(
'listZdyTable'
).
style
.
position
=
'absolute'
;
document
.
getElementById
(
'listZdyTable'
).
style
.
zIndex
=
'-10'
;
};
export
default
function
RenderForm
({
get
=
'web'
,
isCg
=
'yes'
,
style
,
...
rest
})
{
let
content
=
rest
?.
postData
?.
unifiedServicePatternModel
?.
content
;
if
(
isJSON
(
content
))
{
...
...
@@ -32,7 +43,7 @@ export default function RenderForm({ get = 'web', isCg = 'yes', style, ...rest }
showList
:
(
props
)
=>
{
setShowPageType
(
0
);
setPageProps
({});
document
.
getElementById
(
'listZdyTable'
).
style
.
display
=
'block'
;
showDiv
()
;
},
showDetail
:
(
p
)
=>
{
setPageProps
({
...
...
@@ -41,7 +52,7 @@ export default function RenderForm({ get = 'web', isCg = 'yes', style, ...rest }
});
setShowPageType
(
1
);
console
.
log
(
p
);
document
.
getElementById
(
'listZdyTable'
).
style
.
display
=
'none'
;
hideDiv
()
;
},
};
...
...
@@ -68,7 +79,8 @@ export default function RenderForm({ get = 'web', isCg = 'yes', style, ...rest }
/
>
<
SelectPerson
/>
<
/div
>
{
showPageType
===
1
&&
<
Detail
{...
pageProps
}
/>
}
{
showPageType
===
1
&&
<
Detail
fromCheckRecord
=
{
true
}
{...
pageProps
}
/>
}
<
/
>
);
}
...
...
one_stop_public/libs/formList/countWidth.js
浏览文件 @
6ee393d4
...
...
@@ -18,6 +18,7 @@ export default function countWidth({
// 这个是一站式的元素的宽度
}
changeVisitor
(
json
,
uuid
);
// console.log('showDiv', showDiv);
return
showDiv
;
}
...
...
@@ -47,6 +48,7 @@ function changeVisitor(json, uuid) {
// 变动时回调
const
callback
=
function
(
mutations
)
{
// console.log('变动观察器callback')
if
(
!
json
.
twidth
){
let
dxx
=
document
.
querySelector
(
`td[data-cell-id="
${
uuid
}
"] .mobelDivClassName`
);
if
(
dxx
&&
dxx
.
style
.
width
===
'500px'
){
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论