Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
5fbdea9d
提交
5fbdea9d
authored
10月 28, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
30429 系统通用功能--数据下钻/打印弹窗--均打开新页面,不要弹窗,太小了
上级
6354e6e4
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
44 行增加
和
9 行删除
+44
-9
encryptApiList.js
one_stop_public/Base16/encryptApiList.js
+3
-0
globalFunction.js
one_stop_public/Table/globalFunction.js
+0
-0
index.js
one_stop_public/libs/formList/index.js
+2
-1
FormModal.jsx
one_stop_public/tableCompon/FormModal.jsx
+22
-7
style.less
one_stop_public/tableCompon/style.less
+17
-1
没有找到文件。
one_stop_public/Base16/encryptApiList.js
浏览文件 @
5fbdea9d
...
...
@@ -147,6 +147,9 @@ const resBinaryApiList = [
{
api
:
'UnifiedAppApi/getDetail'
,
},
{
api
:
'DataColumnApi/getHeaderList'
,
},
{
api
:
'UnifiedServiceApi/getDetail'
,
},
...
...
one_stop_public/Table/globalFunction.js
浏览文件 @
5fbdea9d
差异被折叠。
点击展开。
one_stop_public/libs/formList/index.js
浏览文件 @
5fbdea9d
...
...
@@ -1456,7 +1456,8 @@ class FormList extends React.Component {
onSelectRow
=
{
this
.
handleSelectRows
}
onChange
=
{
this
.
handleStandardTableChange
}
loading
=
{
loading
}
/
>
getCheckboxProps
=
{
this
.
props
.
getCheckboxProps
||
undefined
}
/
>
)}
<
/div
>
)
:
(
...
...
one_stop_public/tableCompon/FormModal.jsx
浏览文件 @
5fbdea9d
import
React
,
{
}
from
'react'
;
import
React
from
'react'
;
import
{
Button
}
from
'antd'
;
import
{
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
import
styles
from
'./style.less'
const
Modal
=
getModal
();
export
default
class
FormModal
extends
React
.
Component
{
render
()
{
const
showFullScreen
=
()
=>
{
let
dom
=
document
.
getElementById
(
'smartFormModal'
);
dom
.
requestFullscreen
();
console
.
log
(
dom
);
};
return
(
<
Modal
bodyStyle=
{
{
maxHeight
:
'80vh'
,
overflowY
:
'auto'
,
}
}
{
...
this
.
props
}
bodyStyle=
{
{
maxHeight
:
'80vh'
,
overflowY
:
'auto'
,
}
}
{
...
this
.
props
}
destroyOnClose
title=
{
this
.
props
.
title
}
maskClosable=
{
false
}
...
...
@@ -19,7 +27,14 @@ export default class FormModal extends React.Component {
visible=
{
this
.
props
.
visible
}
footer=
{
null
}
onCancel=
{
this
.
props
.
handleCancel
}
>
{
this
.
props
.
children
}
{
this
.
props
.
showFullScreen
&&
(
<
Button
type=
{
'primary'
}
onClick=
{
showFullScreen
}
>
全屏查看
</
Button
>
)
}
<
div
id=
{
'smartFormModal'
}
className=
{
styles
.
fullScreen
}
>
{
this
.
props
.
children
}
</
div
>
</
Modal
>
);
}
...
...
one_stop_public/tableCompon/style.less
浏览文件 @
5fbdea9d
.fullScreen {
&:-webkit-full-screen {
width: 100%;
height: 100%;
padding: 100px;
background-color: #fff;
}
//&:div[data-page-formkey]{
// overflow: hidden;
//}
}
:global {
// table{
// border-collapse:collapse;
// }
#web_table .ant-form-item {
margin-bottom: 2.5px;
margin-top: 2.5px;
...
...
@@ -290,7 +305,8 @@
min-height: 50px;
}
}
.bigTitle{
.bigTitle {
text-align: center;
font-size: 18px;
margin-bottom: 20px;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论