Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c8e5d625
提交
c8e5d625
authored
8月 31, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
28927 校三好学生管理/校三好学生申请,选择“班级/专业”时,滑动页面,它就到天上去了(20192601007,bdk@2022*$)
上级
c0a68ece
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
31 行增加
和
21 行删除
+31
-21
RangePickerDiy.js
one_stop_public/tableCompon/Split_Index/RangePickerDiy.js
+4
-3
getPopupContainer.js
one_stop_public/tableCompon/Split_Index/getPopupContainer.js
+21
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+6
-18
没有找到文件。
one_stop_public/tableCompon/Split_Index/RangePickerDiy.js
浏览文件 @
c8e5d625
...
...
@@ -3,6 +3,8 @@ import { DatePicker } from 'antd';
const
{
RangePicker
}
=
DatePicker
;
import
React
,
{
useEffect
,
useState
}
from
'react'
;
import
getPopupContainer
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/getPopupContainer'
;
export
function
getMomentArr
({
begin
,
...
...
@@ -44,6 +46,7 @@ export default function RangePickerDiy(props) {
value
,
json
,
disabled
,
uuid
,
}
=
props
;
const
[
bindValue
,
setBindValue
]
=
useState
([]);
...
...
@@ -79,9 +82,7 @@ export default function RangePickerDiy(props) {
showTime
=
{
json
.
showTime
!=
null
?
json
.
showTime
:
true
}
format
=
{
json
.
format
?
json
.
format
:
'YYYY-MM-DD HH:mm:ss'
}
disabled
=
{
disabled
}
getCalendarContainer
=
{()
=>
{
return
document
.
body
;
}}
getCalendarContainer
=
{
getPopupContainer
(
false
,
uuid
)}
/
>
);
...
...
one_stop_public/tableCompon/Split_Index/getPopupContainer.js
0 → 100644
浏览文件 @
c8e5d625
/**
* 28927 校三好学生管理/校三好学生申请,选择“班级/专业”时,滑动页面,它就到天上去了(20192601007,bdk@2022*$)
* 钟是志
* 2022年8月31日
* 没有很好的解决方案
* 如果用表单 的dom 在dom 高度不足时 会直接被遮住
* 还是使用body
* 暂时解决不了
* */
export
default
function
getPopupContainer
(
isDynamic
,
uuid
)
{
if
(
isDynamic
&&
document
.
querySelector
(
'#dynamic_div'
))
{
return
()
=>
{
return
document
.
querySelector
(
'#dynamic_div'
);
};
}
else
{
return
()
=>
document
.
body
;
return
()
=>
{
return
document
.
querySelector
(
`td[data-cell-id="
${
uuid
}
"]`
)
||
document
.
body
;
};
}
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
c8e5d625
...
...
@@ -81,6 +81,8 @@ import CronEditorDiy from '@/webPublic/one_stop_public/tableCompon/Split_Index/C
import
ButtonDiy
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/ButtonDiy'
;
import
giveVarcharRules
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/giveVarcharLength'
;
import
getPopupContainer
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/getPopupContainer'
;
const
{
MonthPicker
,
...
...
@@ -3147,13 +3149,7 @@ ${obj[dataColumn.base52]}
placeholder=
{
json
.
placeholder
}
style=
{
{
width
:
json
.
width
}
}
optionFilterProp=
"children"
getPopupContainer=
{
this
.
props
.
isDynamic
&&
document
.
querySelector
(
'#dynamic_div'
)
?
()
=>
{
return
document
.
querySelector
(
'#dynamic_div'
);
}
:
''
}
getPopupContainer=
{
getPopupContainer
(
this
.
props
.
isDynamic
,
uuid
)
}
onFocus=
{
()
=>
{
get
===
'mobile'
// 移动端取消输入键盘弹出
?
setTimeout
(()
=>
{
...
...
@@ -3261,13 +3257,7 @@ ${obj[dataColumn.base52]}
data
-
cell
-
uuid
-
cascader=
{
uuid
}
showSearch=
{
{
filter
:
filterF
}
}
disabled=
{
disabled
}
getPopupContainer=
{
this
.
props
.
isDynamic
&&
document
.
querySelector
(
'#dynamic_div'
)
?
()
=>
{
return
document
.
querySelector
(
'#dynamic_div'
);
}
:
''
}
getPopupContainer=
{
getPopupContainer
(
this
.
props
.
isDynamic
,
uuid
)
}
placeholder=
{
json
.
placeholder
}
style=
{
{
width
:
json
.
width
}
}
{
...
otherProps
}
...
...
@@ -3456,7 +3446,7 @@ ${obj[dataColumn.base52]}
message
:
'请选择起止时间'
,
},
],
})(<
RangePickerDiy
json=
{
json
}
disabled=
{
disabled
}
/>);
})(<
RangePickerDiy
json=
{
json
}
disabled=
{
disabled
}
uuid=
{
uuid
}
/>);
}
if
(
json
.
label
==
null
)
title
=
'起止时间'
;
break
;
...
...
@@ -3492,9 +3482,7 @@ ${obj[dataColumn.base52]}
<
DatePicker
disabled=
{
disabled
}
showTime=
{
json
.
showTime
!=
null
?
json
.
showTime
:
true
}
getCalendarContainer=
{
()
=>
{
return
document
.
body
;
}
}
getCalendarContainer=
{
getPopupContainer
(
false
,
uuid
)
}
onOpenChange=
{
get
===
'mobile'
?
()
=>
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论