Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
dc6ec632
提交
dc6ec632
authored
3月 10, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
iframe页面的Modal 直接从父级获取
上级
abd61200
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
29 行增加
和
18 行删除
+29
-18
index.jsx
one_stop_public/AffairButton/AuditButton/Modal/index.jsx
+4
-2
AddModal.jsx
one_stop_public/AffairButton/SumbitButton/AddModal.jsx
+3
-1
PictureSignature.js
one_stop_public/libs/PictureSignature/PictureSignature.js
+4
-1
utils.js
one_stop_public/utils/utils.js
+18
-14
没有找到文件。
one_stop_public/AffairButton/AuditButton/Modal/index.jsx
浏览文件 @
dc6ec632
...
@@ -4,9 +4,11 @@
...
@@ -4,9 +4,11 @@
* Modal定制样式
* Modal定制样式
*/
*/
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
{
Modal
,
Button
}
from
'antd'
;
import
{
Button
}
from
'antd'
;
import
styles
from
'./index.less'
;
import
styles
from
'./index.less'
;
import
{
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
const
Modal
=
getModal
();
export
default
class
WebModal
extends
Component
{
export
default
class
WebModal
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
...
...
one_stop_public/AffairButton/SumbitButton/AddModal.jsx
浏览文件 @
dc6ec632
...
@@ -4,7 +4,9 @@
...
@@ -4,7 +4,9 @@
* 事务发起提交多次弹框
* 事务发起提交多次弹框
*/
*/
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
{
Modal
,
Button
}
from
'antd'
;
import
{
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
const
Modal
=
getModal
();
export
default
class
AddModal
extends
Component
{
export
default
class
AddModal
extends
Component
{
render
()
{
render
()
{
let
{
visible
,
handleCancel
,
handleOk
,
loading
}
=
this
.
props
;
let
{
visible
,
handleCancel
,
handleOk
,
loading
}
=
this
.
props
;
...
...
one_stop_public/libs/PictureSignature/PictureSignature.js
浏览文件 @
dc6ec632
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
styles
from
'./styles.less'
;
import
styles
from
'./styles.less'
;
import
{
Modal
,
Button
,
Icon
,
message
}
from
'antd'
;
import
{
Button
,
Icon
,
message
}
from
'antd'
;
import
ShowItem
,
{
dragEventList
,
zipImage
}
from
'./ShowItem'
;
import
ShowItem
,
{
dragEventList
,
zipImage
}
from
'./ShowItem'
;
import
{
apiRequest
}
from
'../../utils/request'
;
import
{
apiRequest
}
from
'../../utils/request'
;
import
{
deepCopy
}
from
'@/webPublic/one_stop_public/utils/myutils'
;
import
{
deepCopy
}
from
'@/webPublic/one_stop_public/utils/myutils'
;
import
{
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
const
Modal
=
getModal
();
let
fakeFileInfo
=
{
let
fakeFileInfo
=
{
path
:
'/u/202112/25143111x0ki.jpg'
,
// 超大的图片
path
:
'/u/202112/25143111x0ki.jpg'
,
// 超大的图片
...
...
one_stop_public/utils/utils.js
浏览文件 @
dc6ec632
...
@@ -6,34 +6,38 @@ const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(
...
@@ -6,34 +6,38 @@ const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(
const
isUrl
=
(
path
)
=>
reg
.
test
(
path
);
const
isUrl
=
(
path
)
=>
reg
.
test
(
path
);
const
isAntDesignPro
=
()
=>
{
const
isAntDesignPro
=
()
=>
{
if
(
ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION
===
'site'
)
{
if
(
ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION
===
'site'
)
{
return
true
;
return
true
;
}
}
return
window
.
location
.
hostname
===
'preview.pro.ant.design'
;
return
window
.
location
.
hostname
===
'preview.pro.ant.design'
;
};
// 给官方演示站点用,用于关闭真实开发环境不需要使用的特性
};
// 给官方演示站点用,用于关闭真实开发环境不需要使用的特性
const
isAntDesignProOrDev
=
()
=>
{
const
isAntDesignProOrDev
=
()
=>
{
const
{
NODE_ENV
}
=
process
.
env
;
const
{
NODE_ENV
}
=
process
.
env
;
if
(
NODE_ENV
===
'development'
)
{
if
(
NODE_ENV
===
'development'
)
{
return
true
;
return
true
;
}
}
return
isAntDesignPro
();
return
isAntDesignPro
();
};
};
export
{
isAntDesignProOrDev
,
isAntDesignPro
,
isUrl
};
export
{
isAntDesignProOrDev
,
isAntDesignPro
,
isUrl
};
export
const
dispatch
=
(
type
,
payload
,
callback
)
=>
{
export
const
dispatch
=
(
type
,
payload
,
callback
)
=>
{
window
.
g_app
.
_store
.
dispatch
({
type
,
payload
,
callback
});
window
.
g_app
.
_store
.
dispatch
({
type
,
payload
,
callback
,
});
};
};
export
const
getModal
=
()
=>
{
export
const
getModal
=
()
=>
{
if
(
window
?.
parent
?.
iframeParentComponent
?.
Modal
)
{
if
(
window
?.
parent
?.
iframeParentComponent
?.
Modal
)
{
return
window
?.
parent
?.
iframeParentComponent
?.
Modal
;
return
window
?.
parent
?.
iframeParentComponent
?.
Modal
;
}
else
{
}
else
{
return
Modal
;
return
Modal
;
}
}
}
}
;
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论