Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
1a409507
提交
1a409507
authored
8月 19, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
文件预览地址修改
上级
c2bd8db5
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
41 行增加
和
56 行删除
+41
-56
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+7
-11
UploadCom.js
one_stop_public/libs/UploadCom.js
+4
-5
UploadComDiyForQnZy.js
one_stop_public/libs/UploadComDiyForQnZy.js
+4
-5
TreeList.js
one_stop_public/libs/formList/TreeList.js
+2
-2
index.js
one_stop_public/libs/formList/index.js
+2
-2
index.jsx
one_stop_public/tableCompon/index.jsx
+7
-17
queryConfig.js
one_stop_public/utils/queryConfig.js
+5
-4
PdfMenu.js
zyd_public/WangEditor/DiyMenu/PdfMenu.js
+2
-2
VideoMenu.js
zyd_public/WangEditor/DiyMenu/VideoMenu.js
+2
-2
OneStopWangEditor.js
zyd_public/WangEditor/OneStopWangEditor.js
+2
-2
pdfMenu.js
zyd_public/WangEditor/WangEditor5/DiyMenu/pdfMenu.js
+2
-2
ReactComponent.js
zyd_public/WangEditor/WangEditor5/ReactComponent.js
+2
-2
没有找到文件。
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
1a409507
...
...
@@ -42,7 +42,11 @@ import {
submitValues
,
checkNeedWriteAuditInfo
,
}
from
'./splitDetailSplit'
;
import
{
queryApiVersion
,
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiVersion
,
queryApiActionPath
,
queryFileUrl
,
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
isJSON
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
HistoryFormList
from
'@/webPublic/one_stop_public/DetailForAudit/HistoryFormList'
;
...
...
@@ -758,11 +762,7 @@ class DetailSplit extends Component {
marginTop
:
-
25
,
border
:
item
.
taskVariable
?.
sign
?
'1px solid #ccc'
:
''
,
}}
src
=
{
item
.
taskVariable
?.
sign
?
queryApiActionPath
()
+
item
.
taskVariable
?.
sign
:
''
}
src
=
{
queryFileUrl
(
item
.
taskVariable
?.
sign
)}
alt
=
""
/>
)
:
(
...
...
@@ -828,11 +828,7 @@ class DetailSplit extends Component {
marginTop
:
-
25
,
border
:
item
.
taskVariable
?.
sign
?
'1px solid #ccc'
:
''
,
}}
src
=
{
item
.
taskVariable
?.
sign
?
queryApiActionPath
()
+
item
.
taskVariable
?.
sign
:
''
}
src
=
{
queryFileUrl
(
item
.
taskVariable
?.
sign
)}
alt
=
""
/>
)
:
(
...
...
one_stop_public/libs/UploadCom.js
浏览文件 @
1a409507
// 图片上传组件
import
React
from
'react'
;
import
{
Button
,
Icon
,
message
,
Upload
}
from
'antd'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
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'
;
...
...
@@ -211,14 +211,13 @@ class UploadCom extends React.Component {
<
img
style
=
{{
width
:
'100px'
,
height
:
'auto'
}}
className
=
{
styles
.
img
}
src
=
{
query
ApiActionPath
()
+
f
.
path
}
src
=
{
query
FileUrl
(
f
.
path
)
}
/
>
<
div
className
=
{
styles
.
mask
}
onClick
=
{()
=>
{
// window.open(queryApiActionPath() + f.path);
this
.
setState
({
previewImage
:
query
ApiActionPath
()
+
f
.
path
,
previewImage
:
query
FileUrl
(
f
.
path
)
,
previewImageName
:
f
.
name
,
previewVisible
:
true
,
});
...
...
@@ -238,7 +237,7 @@ class UploadCom extends React.Component {
}
return
(
<
li
key
=
{
f
.
path
}
>
<
a
target
=
"_blank"
key
=
{
f
.
path
}
href
=
{
query
ApiActionPath
()
+
f
.
path
}
>
<
a
target
=
"_blank"
key
=
{
f
.
path
}
href
=
{
query
FileUrl
(
f
.
path
)
}
>
{
f
.
name
}
<
/a>{' '
}
{
!
disabled
&&
(
...
...
one_stop_public/libs/UploadComDiyForQnZy.js
浏览文件 @
1a409507
import
React
from
"react"
;
import
{
Button
,
Icon
,
message
,
Upload
}
from
"antd"
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'../utils/queryConfig'
;
import
config
from
"@/webPublic/one_stop_public/config"
;
import
styles
from
"./style.less"
;
import
{
checkIsImage
}
from
"./UploadCom"
;
...
...
@@ -140,15 +140,14 @@ export default class UploadComDiyForQnZy extends React.Component {
<
img
style
=
{{
width
:
100
,
height
:
100
}}
className
=
{
styles
.
img
}
src
=
{
query
ApiActionPath
()
+
f
.
path
}
src
=
{
query
FileUrl
(
f
.
path
)
}
/
>
<
div
className
=
{
styles
.
mask
}
onClick
=
{()
=>
{
// window.open(queryApiActionPath() + f.path);
this
.
setState
({
previewVisible
:
true
,
previewImage
:
query
ApiActionPath
()
+
f
.
path
,
previewImage
:
query
FileUrl
(
f
.
path
)
,
previewImageName
:
f
.
name
,
});
}}
>
...
...
@@ -167,7 +166,7 @@ export default class UploadComDiyForQnZy extends React.Component {
}
return
(
<
li
key
=
{
f
.
path
}
>
<
a
target
=
"_blank"
key
=
{
f
.
path
}
href
=
{
query
ApiActionPath
()
+
f
.
path
}
>
<
a
target
=
"_blank"
key
=
{
f
.
path
}
href
=
{
query
FileUrl
(
f
.
path
)
}
>
{
f
.
name
}
<
/a>{" "
}
{
!
disabled
&&
(
...
...
one_stop_public/libs/formList/TreeList.js
浏览文件 @
1a409507
...
...
@@ -30,7 +30,7 @@ import SearchInfo from '../../App/SearchInfo';
import
{
Base16Encode
}
from
'../../Base16/index'
;
import
{
isEmpty
}
from
'lodash'
;
import
FilePreview
from
'@/webPublic/one_stop_public/filePreview'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
UploadCom
from
'@/webPublic/one_stop_public/libs/UploadCom'
;
import
{
getModal
,
getPopconfirm
}
from
'@/webPublic/one_stop_public/utils/utils'
;
...
...
@@ -494,7 +494,7 @@ class TreeList extends React.Component {
{
files
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key
=
{
index2
}
>
<
FilePreview
path
=
{
query
ApiActionPath
()
+
f
.
path
}
pathName
=
{
f
.
name
}
/
>
<
FilePreview
path
=
{
query
FileUrl
(
f
.
path
)
}
pathName
=
{
f
.
name
}
/
>
<
/li
>
);
})}
...
...
one_stop_public/libs/formList/index.js
浏览文件 @
1a409507
...
...
@@ -29,7 +29,7 @@ import SearchInfo from '../../App/SearchInfo';
import
{
Base16Encode
}
from
'../../Base16/index'
;
import
{
isEmpty
}
from
'lodash'
;
import
FilePreview
from
'@/webPublic/one_stop_public/filePreview'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
UploadCom
from
'@/webPublic/one_stop_public/libs/UploadCom'
;
import
{
cloneDeep
}
from
'../../copy/index'
;
import
{
getPopconfirm
,
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
...
...
@@ -538,7 +538,7 @@ class FormList extends React.Component {
{
files
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key
=
{
index2
}
>
<
FilePreview
path
=
{
query
ApiActionPath
()
+
f
.
path
}
pathName
=
{
f
.
name
}
/
>
<
FilePreview
path
=
{
query
FileUrl
(
f
.
path
)
}
pathName
=
{
f
.
name
}
/
>
<
/li
>
);
})}
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
1a409507
...
...
@@ -47,7 +47,7 @@ import TableList from '../libs/TableList';
import
styles
from
'./style.less'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
cloneDeep
,
isEmpty
,
isNaN
}
from
'lodash'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'../utils/queryConfig'
;
import
Highlighter
from
'react-highlight-words'
;
import
Signature
from
'../Signature'
;
import
{
changeToDraftState
,
deepCopy
,
preHandle
}
from
'../utils/myutils'
;
...
...
@@ -1812,7 +1812,7 @@ export default class TableCom extends Component {
{
filesX
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key=
{
index2
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
ApiActionPath
()
+
f
.
path
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
FileUrl
(
f
.
path
)
}
>
{
f
.
name
}
</
a
>
</
li
>
...
...
@@ -1832,7 +1832,7 @@ export default class TableCom extends Component {
{
files
.
map
((
f
,
index2
)
=>
{
return
(
<
li
key=
{
index2
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
ApiActionPath
()
+
f
.
path
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
FileUrl
(
f
.
path
)
}
>
{
f
.
name
}
</
a
>
</
li
>
...
...
@@ -2114,7 +2114,6 @@ export default class TableCom extends Component {
switch
(
json
.
comName
)
{
// 电子签章展示
// case 'Signature':
// cm = <img src={queryApiActionPath()+obj[dataColumn.base52]} />
// break;
case
'RichText'
:
cm
=
(
...
...
@@ -2395,7 +2394,7 @@ ${obj[dataColumn.base52]}
return
(
<
li
key=
{
index2
}
>
<
FilePreview
path=
{
query
ApiActionPath
()
+
f
.
path
}
path=
{
query
FileUrl
(
f
.
path
)
}
pathName=
{
f
.
name
}
type=
{
'UploadCom'
}
/>
...
...
@@ -2404,7 +2403,7 @@ ${obj[dataColumn.base52]}
}
return
(
<
li
key=
{
index2
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
ApiActionPath
()
+
f
.
path
}
>
<
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
query
FileUrl
(
f
.
path
)
}
>
{
f
.
name
}
</
a
>
</
li
>
...
...
@@ -2418,20 +2417,11 @@ ${obj[dataColumn.base52]}
<
ul
className=
{
styles
.
imageUl
}
>
{
Array
.
isArray
(
files
)
&&
files
.
map
((
f
,
index2
)
=>
{
// if (f.filePath.indexOf('.png') != -1 || f.filePath.indexOf('.jpg') != -1)
{
// return (
// <img
// key=
{
index2
}
// style=
{{
width
:
100
,
height
:
100
}}
// src=
{
queryApiActionPath
()
+
f
.
filePath
}
// />
// );
//
}
if
(
get
===
'web'
||
!
this
.
props
.
isPrint
)
{
return
(
<
li
key=
{
index2
}
>
<
FilePreview
path=
{
query
ApiActionPath
()
+
f
.
path
}
path=
{
query
FileUrl
(
f
.
path
)
}
pathName=
{
f
.
name
}
type=
{
'UploadCom'
}
/>
...
...
@@ -2443,7 +2433,7 @@ ${obj[dataColumn.base52]}
<
a
target=
"_blank"
key=
{
f
.
filePath
}
href=
{
query
ApiActionPath
()
+
f
.
filePath
}
>
href=
{
query
FileUrl
(
f
.
filePath
)
}
>
{
f
.
fileName
}
</
a
>
</
li
>
...
...
one_stop_public/utils/queryConfig.js
浏览文件 @
1a409507
...
...
@@ -139,16 +139,17 @@ export const queryIsBinary = () => queryConfig('IS_BINARY'); // 是否开启接
export
const
resetLoginUrl
=
()
=>
queryConfig
(
'resetLoginUrl'
);
// 是否退出登录注销token 解决北电科安全测评
export
const
hiddenExitButton
=
()
=>
queryConfig
(
'hiddenExitButton'
);
export
const
queryFileUrl
=
(
url
=
''
)
=>
{
console
.
log
(
url
);
export
const
queryFileUrl
=
(
url
=
''
,
defaultFile
=
''
)
=>
{
if
(
url
&&
typeof
url
===
'string'
&&
url
.
length
>
10
)
{
if
(
url
.
indexOf
(
'http'
)
>
-
1
)
{
if
(
url
.
indexOf
(
'http'
)
>
-
1
)
{
return
url
;
}
const
prefix
=
window
.
CONFIG
[
'FILE_PATH'
]
||
window
.
CONFIG
[
'API_ACTION_PATH'
];
return
prefix
+
url
;
}
else
{
console
.
log
(
'没有找到文件路径'
);
if
(
defaultFile
)
{
return
defaultFile
;
}
return
''
;
}
};
...
...
zyd_public/WangEditor/DiyMenu/PdfMenu.js
浏览文件 @
1a409507
...
...
@@ -2,7 +2,7 @@
import
Editor
from
'@/webPublic/zyd_public/WangEditor/includes/wangEditor.min'
;
import
{
message
}
from
'antd'
;
import
{
uploadFile
}
from
'@/webPublic/one_stop_public/libs/PictureSignature/ShowItem'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
E
=
Editor
;
const
{
BtnMenu
}
=
E
;
...
...
@@ -43,7 +43,7 @@ export default class PdfMenu extends BtnMenu {
.
then
((
res
)
=>
{
setTimeout
(()
=>
{
if
(
res
&&
res
.
length
>
10
)
{
let
url
=
query
ApiActionPath
()
+
res
;
let
url
=
query
FileUrl
(
res
)
;
window
.
message
.
success
(
'上传文件成功'
);
this
.
editor
.
txt
.
append
(
`
<p class='wangEditor-pdfReader'>
...
...
zyd_public/WangEditor/DiyMenu/VideoMenu.js
浏览文件 @
1a409507
...
...
@@ -6,7 +6,7 @@
import
Editor
from
'@/webPublic/zyd_public/WangEditor/includes/wangEditor.min'
;
import
{
message
}
from
'antd'
;
import
{
uploadFile
}
from
"@/webPublic/one_stop_public/libs/PictureSignature/ShowItem"
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
videoSvg
from
'./video.svg'
;
const
E
=
Editor
;
...
...
@@ -38,7 +38,7 @@ export default class VideoMenu extends BtnMenu {
const
fileName
=
file
.
name
;
uploadFile
(
file
).
then
((
res
)
=>
{
if
(
res
&&
res
.
length
>
10
)
{
let
url
=
query
ApiActionPath
()
+
res
;
let
url
=
query
FileUrl
(
res
)
;
setTimeout
(()
=>
{
window
.
message
.
success
(
'上传成功'
);
this
.
editor
.
txt
.
append
(
`
...
...
zyd_public/WangEditor/OneStopWangEditor.js
浏览文件 @
1a409507
...
...
@@ -16,7 +16,7 @@
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
WangEditor
from
'./includes/wangEditor.min'
;
import
{
uploadFile
}
from
"@/webPublic/one_stop_public/libs/PictureSignature/ShowItem"
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
PdfMenu
from
'@/webPublic/zyd_public/WangEditor/DiyMenu/PdfMenu'
;
import
VideoMenu
from
'@/webPublic/zyd_public/WangEditor/DiyMenu/VideoMenu'
;
let
editor
=
null
;
...
...
@@ -61,7 +61,7 @@ export default function Index({
// 重写上传图片的方法
uploadFile
(
resultFiles
[
0
]).
then
((
y
)
=>
{
if
(
y
&&
y
.
length
)
{
insertImgFn
(
query
ApiActionPath
()
+
y
);
insertImgFn
(
query
FileUrl
(
y
)
);
}
});
// insertImgFn(imgUrl);
...
...
zyd_public/WangEditor/WangEditor5/DiyMenu/pdfMenu.js
浏览文件 @
1a409507
import
{
uploadFile
}
from
'@/webPublic/one_stop_public/libs/PictureSignature/ShowItem'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
message
}
from
'antd'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/staticInfo'
;
...
...
@@ -45,7 +45,7 @@ class MyMenu {
.
then
((
res
)
=>
{
setTimeout
(()
=>
{
if
(
res
&&
typeof
res
===
'string'
&&
res
.
length
>
10
&&
res
.
indexOf
(
'errMsg'
)
<=
-
1
)
{
let
url
=
query
ApiActionPath
()
+
res
;
let
url
=
query
FileUrl
(
res
)
;
message
.
success
(
'上传文件成功'
);
const
v
=
`<p class='wangEditor-pdfReader'><embed width='100%'
height='768px'
...
...
zyd_public/WangEditor/WangEditor5/ReactComponent.js
浏览文件 @
1a409507
...
...
@@ -8,7 +8,7 @@
import
styles
from
'./css/style.less'
;
import
React
,
{
useEffect
,
useState
,
useRef
}
from
'react'
;
import
compressImage
from
'@/webPublic/zyd_public/WangEditor/compressImage'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
uploadFile
as
uploadOnestopFile
}
from
'@/webPublic/one_stop_public/libs/PictureSignature/ShowItem'
;
import
loadCss
from
'@/webPublic/zyd_public/WangEditor/WangEditor5/css/cssLoader'
;
import
myMenuConf
from
'@/webPublic/zyd_public/WangEditor/WangEditor5/DiyMenu/pdfMenu'
;
...
...
@@ -58,7 +58,7 @@ function WangEditorReactComponent(props) {
uploadOnestopFile
(
fileNew
).
then
((
y
)
=>
{
// 使用一站式的文件上传接口
if
(
y
&&
y
.
length
)
{
insertFn
(
query
ApiActionPath
()
+
y
,
file
.
name
);
insertFn
(
query
FileUrl
(
y
)
,
file
.
name
);
}
});
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论