Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
15360bbc
提交
15360bbc
authored
8月 29, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
一站式图片地址拼接 修改成用同一个函数来处理
上级
323814c1
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
48 行增加
和
32 行删除
+48
-32
AuditPage.js
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
+42
-28
destruction.js
FormInsertDiy/AffairPage/destruction.js
+4
-2
index.js
FormInsertDiy/Export/index.js
+0
-1
getOneStopImgUrl.js
zyd_private/utils/getOneStopImgUrl.js
+2
-1
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
浏览文件 @
15360bbc
...
...
@@ -23,9 +23,10 @@ export default class AuditPage extends Component {
?
{
type
:
'audit'
,
component
:
'RenderComponent'
,
key
:
'audit'
,
key
:
'audit'
,
render
:
({
selectRows
,
getPage
})
=>
{
const
disabled
=
!
selectRows
||
!
Array
.
isArray
(
selectRows
)
||
!
selectRows
.
length
;
function
handleClick
(
onShow
)
{
const
taskName
=
selectRows
[
0
].
taskName
;
const
differentTask
=
selectRows
.
slice
(
1
).
find
((
i
)
=>
i
.
taskName
!==
taskName
);
...
...
@@ -42,15 +43,16 @@ export default class AuditPage extends Component {
}
onShow
();
}
return
(
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
noNeedForm
=
{
noNeedForm
}
key
=
{
'audit'
}
>
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
noNeedForm
=
{
noNeedForm
}
key
=
{
'audit'
}
>
{({
onShow
})
=>
(
<
ButtonDiy
key
=
{
'audit'
}
key
=
{
'audit'
}
name
=
{
batchAuditButtonName
||
'批量审核'
}
handleClick
=
{()
=>
handleClick
(
onShow
)}
disabled
=
{
disabled
}
...
...
@@ -71,8 +73,8 @@ export default class AuditPage extends Component {
const
tab1
=
{
search
:
{
field
:
{},
scroll
:
{
x
:
'max-content'
},
getPageService
:
getWaitPage
,
scroll
:
{
x
:
'max-content'
},
getPageService
:
getWaitPage
,
beforeSearchData
:
(
data
)
=>
{
let
searcherKeyValue
=
{};
for
(
let
item
of
searchCondition
)
{
...
...
@@ -89,14 +91,20 @@ export default class AuditPage extends Component {
return
response
;
},
condition
:
searchCondition
.
filter
((
g
)
=>
{
if
(
!
allConfigSetInfo
.
isShowWaitTaskDef
){
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
if
(
!
allConfigSetInfo
.
isShowWaitTaskDef
)
{
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
,
},
fileSpan
:
{
big
:
4
,
small
:
4
,
},
},
tableRowKey
:
'id'
,
columns
,
...
...
@@ -104,8 +112,8 @@ export default class AuditPage extends Component {
const
tab2
=
{
search
:
{
field
:
{},
scroll
:
{
x
:
'max-content'
},
getPageService
:
getHandledPage
,
scroll
:
{
x
:
'max-content'
},
getPageService
:
getHandledPage
,
responseCallBack
:
(
response
)
=>
{
return
response
;
},
...
...
@@ -121,15 +129,21 @@ export default class AuditPage extends Component {
}
return
data
;
},
condition
:
searchCondition
.
filter
((
g
)
=>
{
if
(
!
allConfigSetInfo
.
isShowHandledTaskDef
){
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
},
fileSpan
:
{
big
:
4
,
small
:
4
},
condition
:
searchCondition
.
filter
((
g
)
=>
{
if
(
!
allConfigSetInfo
.
isShowHandledTaskDef
)
{
return
g
.
key
!==
'taskDefKey'
;
}
else
{
return
true
;
}
}),
nameSpan
:
{
big
:
8
,
small
:
9
,
},
fileSpan
:
{
big
:
4
,
small
:
4
,
},
},
tableRowKey
:
'id'
,
columns
,
...
...
FormInsertDiy/AffairPage/destruction.js
浏览文件 @
15360bbc
...
...
@@ -8,6 +8,8 @@ import React from 'react';
import
{
findListTaskDefinition
}
from
'@/webPublic/FormInsertDiy/AffairPage/publicApiService'
;
import
QRCode
from
'qrcode.react'
;
import
styles
from
'./styles.less'
;
import
{
getUrlInfo
}
from
'@/webPublic/one_stop_public/DetailForAudit/utils'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
handleSqlModels
=
(
sqlModels
,
defaultValues
)
=>
{
if
(
typeof
sqlModels
===
'undefined'
||
!
Array
.
isArray
(
sqlModels
))
{
...
...
@@ -386,7 +388,7 @@ export function handleColumns(columns) {
}
if
(
item
.
extendType
===
'file'
&&
typeof
text
===
'string'
)
{
let
url
=
text
.
includes
(
'http'
)
?
text
:
config
.
sqlFormsServer
+
text
;
let
url
=
queryFileUrl
(
text
)
;
return
(
<
a
href
=
{
url
}
target
=
{
'_blank'
}
>
点击查看
...
...
@@ -413,7 +415,7 @@ export function handleColumns(columns) {
if
(
typeof
file
.
path
!==
'string'
){
return
null
;
}
let
url
=
file
.
path
&&
file
.
path
.
includes
(
'http'
)
?
file
.
path
:
config
.
sqlFormsServer
+
file
.
path
;
let
url
=
queryFileUrl
(
file
.
path
)
;
return
(
<
a
href
=
{
url
}
target
=
{
'_blank'
}
key
=
{
file
.
name
}
style
=
{{
marginRight
:
'10px'
}}
>
{
file
.
name
}
...
...
FormInsertDiy/Export/index.js
浏览文件 @
15360bbc
...
...
@@ -273,7 +273,6 @@ export default class Index extends React.Component {
names
.
push
(
this
.
state
.
infos
[
this
.
state
.
targetKeys
[
i
]].
name
);
}
let
divElement
=
document
.
getElementById
(
'downloadDiv'
);
console
.
log
(
config
.
sqlFormsServer
);
let
downloadUrl
=
config
.
sqlFormsServer
+
'/DataObjApi/exportFormData?'
;
const
token
=
getToken
()
!=
null
&&
getToken
()
!=
'null'
?
getToken
()
:
'0000'
;
downloadUrl
=
`
${
downloadUrl
}
token=
${
token
}
`
;
...
...
zyd_private/utils/getOneStopImgUrl.js
浏览文件 @
15360bbc
import
{
isJSON
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
config
from
'@/config/config'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
export
default
function
getOneStopImgUrl
(
imgStr
=
''
)
{
if
(
imgStr
&&
isJSON
(
imgStr
))
{
...
...
@@ -12,7 +13,7 @@ export default function getOneStopImgUrl(imgStr = '') {
})
.
map
((
x
)
=>
{
return
{
path
:
config
.
sqlFormsServer
+
x
?.
path
,
path
:
queryFileUrl
(
x
?.
path
)
,
name
:
x
.
name
,
};
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论