Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
4b542b71
提交
4b542b71
authored
12月 14, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
流程发起增加回调函数
上级
5e2391ef
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
57 行增加
和
33 行删除
+57
-33
UploadCom.js
one_stop_public/libs/UploadCom.js
+32
-22
callbackExamineProcess.js
one_stop_public/models/callbackExamineProcess.js
+24
-11
index.jsx
one_stop_public/tableCompon/index.jsx
+1
-0
没有找到文件。
one_stop_public/libs/UploadCom.js
浏览文件 @
4b542b71
import
React
from
"react"
;
import
{
Button
,
Icon
,
message
,
Modal
,
Upload
}
from
"antd"
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
{
Button
,
Icon
,
message
,
Modal
,
Upload
}
from
"antd"
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
config
from
"@/webPublic/one_stop_public/config"
;
import
styles
from
"./style.less"
;
import
UploadComDiyForQnZy
from
"@/webPublic/one_stop_public/libs/UploadComDiyForQnZy"
;
export
function
checkIsImage
(
path
){
if
(
!
path
)
{
export
function
checkIsImage
(
path
)
{
if
(
!
path
)
{
return
false
;
}
let
p
=
path
.
toLowerCase
();
let
find
=
[
'.jpg'
,
'.png'
,
'.jpeg'
,
'.bmp'
,
'.gif'
,
'.bmp'
,
'.svg'
].
find
((
x
)
=>
{
return
path
.
indexOf
(
x
)
>
-
1
;
let
find
=
[
'.jpg'
,
'.png'
,
'.jpeg'
,
'.bmp'
,
'.gif'
,
'.bmp'
,
'.svg'
].
find
((
x
)
=>
{
return
path
.
indexOf
(
x
)
>
-
1
;
});
return
!!
find
;
}
...
...
@@ -32,8 +32,18 @@ class UploadCom extends React.Component {
this
.
state
=
{
files
:
value
.
files
,
previewVisible
:
false
,
previewImage
:
""
previewImage
:
""
,
};
console
.
log
(
props
);
if
(
props
.
json
?.
otherProps
)
{
this
.
otherProps
=
props
.
json
?.
otherProps
;
try
{
this
.
otherProps
=
new
Function
(
this
.
otherProps
);
console
.
log
(
this
.
otherProps
);
}
catch
(
e
)
{
}
}
}
triggerChange
=
(
changedValue
)
=>
{
...
...
@@ -56,11 +66,11 @@ class UploadCom extends React.Component {
if
(
info
.
file
.
status
===
"done"
)
{
message
.
success
(
`
${
info
.
file
.
name
}
上传成功`
);
const
files
=
this
.
state
.
files
;
files
.
push
({
path
:
info
.
file
.
response
,
name
:
info
.
file
.
name
});
files
.
push
({
path
:
info
.
file
.
response
,
name
:
info
.
file
.
name
});
if
(
!
(
"value"
in
this
.
props
))
{
this
.
setState
({
files
});
this
.
setState
({
files
});
}
this
.
triggerChange
({
files
});
this
.
triggerChange
({
files
});
}
else
if
(
info
.
file
.
status
===
"error"
)
{
message
.
error
(
`
${
info
.
file
.
name
}
上传失败`
);
}
...
...
@@ -74,14 +84,14 @@ class UploadCom extends React.Component {
}
}
if
(
!
(
"value"
in
this
.
props
))
{
this
.
setState
({
files
});
this
.
setState
({
files
});
}
this
.
triggerChange
({
files
});
this
.
triggerChange
({
files
});
};
render
()
{
const
{
files
,
previewVisible
,
previewImage
}
=
this
.
state
;
const
{
isMultiple
,
accept
,
btnName
,
disabled
}
=
this
.
props
;
const
{
files
,
previewVisible
,
previewImage
}
=
this
.
state
;
const
{
isMultiple
,
accept
,
btnName
,
disabled
}
=
this
.
props
;
const
props
=
{
name
:
"file"
,
multiple
:
isMultiple
,
...
...
@@ -96,19 +106,19 @@ class UploadCom extends React.Component {
<
Upload
{...
props
}
disabled
=
{
disabled
}
>
{
!
disabled
&&
(
<
Button
>
<
Icon
type
=
"upload"
/>
<
Icon
type
=
"upload"
/>
{
btnName
?
btnName
:
"上传附件"
}
<
/Button
>
)}
<
/Upload
>
<
ul
style
=
{{
paddingLeft
:
8
,
display
:
"flex"
}}
>
<
ul
style
=
{{
paddingLeft
:
8
,
display
:
"flex"
}}
>
{(
files
||
[]).
map
((
f
)
=>
{
if
(
f
.
path
&&
checkIsImage
(
f
.
path
))
{
return
(
<
li
key
=
{
f
.
path
}
className
=
{
styles
.
preview_img
}
>
<
div
className
=
{
styles
.
preview_div
}
>
<
img
style
=
{{
width
:
'100px'
,
height
:
'auto'
}}
style
=
{{
width
:
'100px'
,
height
:
'auto'
}}
className
=
{
styles
.
img
}
src
=
{
queryApiActionPath
()
+
f
.
path
}
/
>
...
...
@@ -121,12 +131,12 @@ class UploadCom extends React.Component {
previewImage
:
queryApiActionPath
()
+
f
.
path
});
}}
>
<
Icon
type
=
"eye"
className
=
{
styles
.
icon_eye
}
/
>
<
Icon
type
=
"eye"
className
=
{
styles
.
icon_eye
}
/
>
<
/div
>
<
/div
>
{
!
disabled
&&
(
<
Icon
style
=
{{
marginLeft
:
10
}}
style
=
{{
marginLeft
:
10
}}
type
=
"delete"
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
/
>
...
...
@@ -141,7 +151,7 @@ class UploadCom extends React.Component {
<
/a>{" "
}
{
!
disabled
&&
(
<
Icon
style
=
{{
marginLeft
:
10
}}
style
=
{{
marginLeft
:
10
}}
type
=
"delete"
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
/
>
...
...
@@ -153,10 +163,10 @@ class UploadCom extends React.Component {
<
Modal
visible
=
{
previewVisible
}
footer
=
{
null
}
onCancel
=
{()
=>
this
.
setState
({
previewVisible
:
false
})}
onCancel
=
{()
=>
this
.
setState
({
previewVisible
:
false
})}
width
=
{
'90vw'
}
>
<
img
alt
=
"example"
style
=
{{
width
:
"100%"
,
height
:
'auto'
}}
src
=
{
previewImage
}
/
>
<
img
alt
=
"example"
style
=
{{
width
:
"100%"
,
height
:
'auto'
}}
src
=
{
previewImage
}
/
>
<
/Modal
>
<
/div
>
);
...
...
one_stop_public/models/callbackExamineProcess.js
浏览文件 @
4b542b71
export
function
submitProcessData
({
payload
,
item
,
data
})
{
let
postData
=
{
...
payload
,
buttonInfo
:
item
,
ssxRemark
:
'examineMap 和 taskForm 都是json字符串 通过修改 examineMap, taskForm中的值 达到改变提交记录的效果'
,
apiData
:
data
,
taskFormKey
:
data
.
taskFormKey
,
};
return
postData
;
}
//
export function submitProcessData({ payload, item, data }) {
//
let postData = {
//
...payload,
//
buttonInfo: item,
//
ssxRemark:
//
'examineMap 和 taskForm 都是json字符串 通过修改 examineMap, taskForm中的值 达到改变提交记录的效果',
//
apiData: data,
//
taskFormKey: data.taskFormKey,
//
};
//
return postData;
//
}
export
function
callbackSubmitData
(
infoData
)
{
console
.
log
(
infoData
);
...
...
@@ -26,3 +26,16 @@ export function callbackSubmitData(infoData) {
}
return
infoData
;
}
export
function
callbackApplyData
(
infoData
)
{
// 流程发起的回调函数
console
.
log
(
infoData
);
if
(
window
.
callbackApplyDataInfoZhiYong
&&
typeof
window
.
callbackApplyDataInfoZhiYong
===
'function'
)
{
infoData
=
window
.
callbackApplyDataInfoZhiYong
({
// 返回新的值就行了.
postData
:
infoData
,
//
});
if
(
typeof
infoData
===
'object'
)
{
delete
infoData
.
userNowInfo
;
}
}
return
infoData
;
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
4b542b71
...
...
@@ -2940,6 +2940,7 @@ export default class tableCom extends Component {
isMultiple=
{
json
.
isMultiple
}
accept=
{
json
.
accept
}
btnName=
{
json
.
btnName
}
json=
{
json
}
disabled=
{
disabled
||
isPreview
}
/>,
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论