Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
64e392b8
提交
64e392b8
authored
8月 19, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
差异文件
1
上级
ffae5587
f95bd7b6
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
21 个修改的文件
包含
114 行增加
和
113 行删除
+114
-113
DraftEditor.js
one_stop_public/App/DraftEditor.js
+4
-3
DraftEditorCom.js
one_stop_public/App/DraftEditorCom.js
+4
-3
MyBlockRender.js
one_stop_public/App/MyBlockRender.js
+4
-3
DetailSplit.js
one_stop_public/DetailForAudit/DetailSplit.js
+7
-11
index.jsx
one_stop_public/Signature/index.jsx
+3
-3
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+2
-1
ShowItem.js
one_stop_public/libs/PictureSignature/ShowItem.js
+3
-2
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
staticInfo.jsx
one_stop_public/tableCompon/Split_Index/staticInfo.jsx
+2
-6
index.jsx
one_stop_public/tableCompon/index.jsx
+0
-0
queryConfig.js
one_stop_public/utils/queryConfig.js
+15
-0
utils.js
one_stop_public/utils/utils.js
+35
-39
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
queryCurrent.js
zyd_public/utils/queryCurrent.js
+13
-18
没有找到文件。
one_stop_public/App/DraftEditor.js
浏览文件 @
64e392b8
...
...
@@ -28,6 +28,7 @@ import {
RichUtils
,
}
from
'draft-js'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
FormItem
=
Form
.
Item
;
function
getBlockStyle
(
block
)
{
...
...
@@ -507,7 +508,7 @@ class AttrForm extends React.Component {
onChangemultiple
=
{
false
}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
a
href
=
{
config
.
httpServer
+
url
}
target
=
"_blank"
>
<
a
href
=
{
queryFileUrl
(
url
)
}
target
=
"_blank"
>
{
name
}
<
/a
>
)
:
(
...
...
@@ -600,7 +601,7 @@ class VideoForm extends React.Component {
onChangemultiple
=
{
false
}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
video
src
=
{
config
.
httpServer
+
url
}
controls
=
"controls"
>
<
video
src
=
{
queryFileUrl
(
url
)
}
controls
=
"controls"
>
您的浏览器不支持
video
标签。
<
/video
>
)
:
(
...
...
@@ -692,7 +693,7 @@ class PicForm extends React.Component {
multiple
=
{
false
}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
img
src
=
{
config
.
httpServer
+
url
}
style
=
{{
height
:
400
,
width
:
'100%'
}}
/
>
<
img
src
=
{
queryFileUrl
(
url
)
}
style
=
{{
height
:
400
,
width
:
'100%'
}}
/
>
)
:
(
<
p
className
=
"ant-upload-drag-icon"
style
=
{{
marginBottom
:
0
,
height
:
400
}}
>
<
Icon
type
=
"video"
/>
...
...
one_stop_public/App/DraftEditorCom.js
浏览文件 @
64e392b8
...
...
@@ -27,6 +27,7 @@ import {
CompositeDecorator
,
RichUtils
,
}
from
'draft-js'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
FormItem
=
Form
.
Item
;
function
getBlockStyle
(
block
)
{
...
...
@@ -510,7 +511,7 @@ class AttrForm extends React.Component {
onChangemultiple
=
{
false
}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
a
href
=
{
config
.
httpServer
+
url
}
target
=
"_blank"
>
<
a
href
=
{
queryFileUrl
(
url
)
}
target
=
"_blank"
>
{
name
}
<
/a
>
)
:
(
...
...
@@ -603,7 +604,7 @@ class VideoForm extends React.Component {
}}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
video
src
=
{
config
.
httpServer
+
url
}
controls
=
"controls"
>
<
video
src
=
{
queryFileUrl
(
url
)
}
controls
=
"controls"
>
您的浏览器不支持
video
标签。
<
/video
>
)
:
(
...
...
@@ -695,7 +696,7 @@ class PicForm extends React.Component {
multiple
=
{
false
}
style
=
{{
padding
:
0
}}
>
{
url
?
(
<
img
src
=
{
config
.
httpServer
+
url
}
style
=
{{
height
:
400
,
width
:
'100%'
}}
/
>
<
img
src
=
{
queryFileUrl
(
url
)
}
style
=
{{
height
:
400
,
width
:
'100%'
}}
/
>
)
:
(
<
p
className
=
"ant-upload-drag-icon"
style
=
{{
marginBottom
:
0
,
height
:
400
}}
>
<
Icon
type
=
"video"
/>
...
...
one_stop_public/App/MyBlockRender.js
浏览文件 @
64e392b8
...
...
@@ -4,6 +4,7 @@ import table from '../assets/专家经验系统切图/智能报告/table.png';
import
chart
from
'../assets/专家经验系统切图/智能报告/chart.png'
;
import
React
from
'react'
;
import
{
connect
}
from
'dva'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
ReactHighcharts
=
config
.
ReactHighcharts
;
@
connect
(({
Report
,
loading
})
=>
({
...
...
@@ -200,14 +201,14 @@ const AtomicComponent = (props) => {
const
{
src
}
=
entity
.
getData
();
return
(
<
div
>
<
img
src
=
{
config
.
httpServer
+
src
}
style
=
{{
maxWidth
:
'100%'
}}
/
>
<
img
src
=
{
queryFileUrl
(
src
)
}
style
=
{{
maxWidth
:
'100%'
}}
/
>
<
/div
>
);
}
if
(
type
===
'attr'
)
{
const
{
src
,
name
}
=
entity
.
getData
();
return
(
<
a
href
=
{
config
.
httpServer
+
src
}
target
=
"_blank"
>
<
a
href
=
{
queryFileUrl
(
src
)
}
target
=
"_blank"
>
{
name
}
<
/a
>
);
...
...
@@ -215,7 +216,7 @@ const AtomicComponent = (props) => {
const
{
src
}
=
entity
.
getData
();
return
(
<
div
>
<
video
src
=
{
config
.
httpServer
+
src
}
controls
=
"controls"
>
<
video
src
=
{
queryFileUrl
(
src
)
}
controls
=
"controls"
>
您的浏览器不支持
video
标签。
<
/video
>
<
/div
>
...
...
one_stop_public/DetailForAudit/DetailSplit.js
浏览文件 @
64e392b8
...
...
@@ -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/Signature/index.jsx
浏览文件 @
64e392b8
...
...
@@ -115,7 +115,7 @@ export default class Signature extends Component {
Modal
.
info
({
title
:
'查看签名'
,
content
:
<
div
className=
{
styles
.
showDiv
}
>
<
img
src=
{
config
.
httpServer
+
url
}
/>
<
img
src=
{
queryFileUrl
(
url
)
}
/>
</
div
>,
footer
:
null
,
});
...
...
@@ -138,7 +138,7 @@ export default class Signature extends Component {
className={styles.reSign}>
重新签名
</Button>*/
}
<
img
src=
{
config
.
httpServer
+
url
}
className=
{
styles
.
littleSign
}
onClick=
{
this
.
showSignImage
}
/>
<
img
src=
{
queryFileUrl
(
url
)
}
className=
{
styles
.
littleSign
}
onClick=
{
this
.
showSignImage
}
/>
</
div
>
);
}
else
{
...
...
@@ -233,7 +233,7 @@ export default class Signature extends Component {
<
this
.
EditIcon
/>
<
img
onClick=
{
this
.
showSignImage
}
src=
{
config
.
httpServer
+
url
}
src=
{
queryFileUrl
(
url
)
}
style=
{
{
height
,
width
,
...
...
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
64e392b8
...
...
@@ -3,6 +3,7 @@ import {Upload, message} from 'antd';
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
zipImage
}
from
"@/webPublic/zyd_public/utils/handlePhoto"
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
export
default
class
ImgUploadCom
extends
React
.
Component
{
constructor
(
props
)
{
...
...
@@ -75,7 +76,7 @@ export default class ImgUploadCom extends React.Component {
style=
{
{
padding
:
0
}
}
>
{
url
?
(
<
img
src=
{
config
.
httpServer
+
url
}
style=
{
{
<
img
src=
{
queryFileUrl
(
url
)
}
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
,
maxWidth
:
'60vw'
,
// 解决图片在移动端过宽的bug
...
...
one_stop_public/libs/PictureSignature/ShowItem.js
浏览文件 @
64e392b8
import
React
from
'react'
;
import
{
queryApiActionPath
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryApiActionPath
,
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
isFromIframe
}
from
'@/webPublic/one_stop_public/utils/utils'
;
import
getOneStopUploadUrl
from
'@/webPublic/one_stop_public/Base16/getOneStopUploadUrl'
;
const
oneSetItemP
=
{
marginBottom
:
0
,
userSelect
:
'none'
,
...
...
@@ -157,7 +158,7 @@ export const uploadFile = (file) => {
export
const
zipImage
=
(
path
,
fileName
,
limitWidth
=
1200
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
image
=
new
Image
();
//新建一个img标签(还没嵌入DOM节点)
let
imageUrl
=
query
ApiActionPath
()
+
path
;
let
imageUrl
=
query
FileUrl
(
path
)
;
image
.
setAttribute
(
'crossOrigin'
,
'Anonymous'
);
image
.
src
=
imageUrl
;
image
.
onload
=
()
=>
{
...
...
one_stop_public/libs/UploadCom.js
浏览文件 @
64e392b8
// 图片上传组件
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
浏览文件 @
64e392b8
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
浏览文件 @
64e392b8
...
...
@@ -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
浏览文件 @
64e392b8
...
...
@@ -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/Split_Index/staticInfo.jsx
浏览文件 @
64e392b8
...
...
@@ -5,6 +5,7 @@ import { isNaN } from 'lodash';
import
React
from
'react'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/2022beidianke/isJSON'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
const
codeMessage
=
{
200
:
'服务器成功返回请求的数据。'
,
...
...
@@ -184,12 +185,7 @@ const getRender = (com, props) => {
if
(
com
==
'canvas'
)
return
<
canvas
{
...
props
}
/>;
if
(
com
==
'iframe'
)
return
<
iframe
{
...
props
}
/>;
if
(
com
==
'img'
)
{
const
src
=
props
.
src
!=
null
?
props
.
src
.
indexOf
(
'http'
)
>
-
1
?
props
.
src
:
config
.
httpServer
+
props
.
src
:
null
;
const
src
=
queryFileUrl
(
props
.
src
)
const
pp
=
{
...
props
,
src
:
src
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
64e392b8
差异被折叠。
点击展开。
one_stop_public/utils/queryConfig.js
浏览文件 @
64e392b8
...
...
@@ -139,4 +139,19 @@ export const queryIsBinary = () => queryConfig('IS_BINARY'); // 是否开启接
export
const
resetLoginUrl
=
()
=>
queryConfig
(
'resetLoginUrl'
);
// 是否退出登录注销token 解决北电科安全测评
export
const
hiddenExitButton
=
()
=>
queryConfig
(
'hiddenExitButton'
);
export
const
queryFileUrl
=
(
url
=
''
,
defaultFile
=
''
)
=>
{
if
(
url
&&
typeof
url
===
'string'
&&
url
.
length
>
10
)
{
if
(
url
.
indexOf
(
'http'
)
>
-
1
)
{
return
url
;
}
const
prefix
=
window
.
CONFIG
[
'FILE_PATH'
]
||
window
.
CONFIG
[
'API_ACTION_PATH'
];
return
prefix
+
url
;
}
else
{
if
(
defaultFile
)
{
return
defaultFile
;
}
return
''
;
}
};
export
default
queryConfig
;
one_stop_public/utils/utils.js
浏览文件 @
64e392b8
...
...
@@ -8,68 +8,64 @@ const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(
const
isUrl
=
(
path
)
=>
reg
.
test
(
path
);
const
isAntDesignPro
=
()
=>
{
if
(
ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION
===
'site'
)
{
return
true
;
}
if
(
ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION
===
'site'
)
{
return
true
;
}
return
window
.
location
.
hostname
===
'preview.pro.ant.design'
;
return
window
.
location
.
hostname
===
'preview.pro.ant.design'
;
};
// 给官方演示站点用,用于关闭真实开发环境不需要使用的特性
const
isAntDesignProOrDev
=
()
=>
{
const
{
NODE_ENV
}
=
process
.
env
;
const
{
NODE_ENV
}
=
process
.
env
;
if
(
NODE_ENV
===
'development'
)
{
return
true
;
}
if
(
NODE_ENV
===
'development'
)
{
return
true
;
}
return
isAntDesignPro
();
return
isAntDesignPro
();
};
export
{
isAntDesignProOrDev
,
isAntDesignPro
,
isUrl
};
export
const
dispatch
=
(
type
,
payload
,
callback
)
=>
{
window
.
g_app
.
_store
.
dispatch
({
type
,
payload
,
callback
,
});
window
.
g_app
.
_store
.
dispatch
({
type
,
payload
,
callback
,
});
};
export
const
isFromIframe
=
()
=>
{
// 判断是否来自iframe 嵌入页面 暂时放弃使用
return
false
;
let
isFromIframe
=
window
.
frames
.
length
!==
parent
.
frames
.
length
;
if
(
window
.
location
.
origin
.
indexOf
(
'localhost'
)
>
-
1
)
{
return
false
;
}
return
isFromIframe
;
export
const
isFromIframe
=
()
=>
{
// 判断是否来自iframe 嵌入页面 暂时放弃使用
return
false
;
let
isFromIframe
=
window
.
frames
.
length
!==
parent
.
frames
.
length
;
if
(
window
.
location
.
origin
.
indexOf
(
'localhost'
)
>
-
1
)
{
return
false
;
}
return
isFromIframe
;
};
export
const
getModal
=
()
=>
{
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
Modal
:
Modal
;
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
Modal
:
Modal
;
};
export
const
getPopconfirm
=
()
=>
{
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
Popconfirm
:
Popconfirm
;
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
Popconfirm
:
Popconfirm
;
};
export
const
getMessage
=
()
=>
{
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
message
:
message
;
return
isFromIframe
()
?
window
?.
parent
?.
iframeParentComponent
?.
message
:
message
;
};
export
const
getOneStopMyInfo
=
(
params
=
{})
=>
{
return
uaaRequest
(
'/UserApi/getMy'
,
params
)
.
then
((
res
)
=>
{
if
(
res
)
{
if
(
!
res
.
groupsId
)
{
res
.
groupsId
=
'pub'
;
}
return
getTime
()
.
then
((
t
)
=>
{
res
.
differenceBetweenServerAndClientTime
=
t
;
localStorage
.
setItem
(
'user'
,
JSON
.
stringify
(
res
));
return
res
;
});
}
});
return
uaaRequest
(
'/UserApi/getMy'
,
params
).
then
((
res
)
=>
{
if
(
res
)
{
if
(
!
res
.
groupsId
)
{
res
.
groupsId
=
'pub'
;
}
res
.
differenceBetweenServerAndClientTime
=
-
50
;
localStorage
.
setItem
(
'user'
,
JSON
.
stringify
(
res
));
return
res
;
}
});
};
zyd_public/WangEditor/DiyMenu/PdfMenu.js
浏览文件 @
64e392b8
...
...
@@ -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
浏览文件 @
64e392b8
...
...
@@ -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
浏览文件 @
64e392b8
...
...
@@ -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
浏览文件 @
64e392b8
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
浏览文件 @
64e392b8
...
...
@@ -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
);
}
});
});
...
...
zyd_public/utils/queryCurrent.js
浏览文件 @
64e392b8
...
...
@@ -10,16 +10,15 @@ export const getTime = () => {
method
:
'POST'
,
body
:
{},
},
)
.
then
(
t
=>
{
if
(
t
)
{
return
t
-
new
Date
().
getTime
();
// 服务器时间 与 客户端时间的差值;
}
else
{
return
0
;
}
});
).
then
(
t
=>
{
if
(
t
)
{
return
t
-
new
Date
().
getTime
();
// 服务器时间 与 客户端时间的差值;
}
else
{
return
0
;
}
});
}
else
{
return
new
Promise
(
(
resolve
)
=>
{
return
new
Promise
(
resolve
=>
{
resolve
(
0
);
return
0
;
});
...
...
@@ -27,23 +26,19 @@ export const getTime = () => {
};
export
async
function
queryCurrent
()
{
// let t = await getTime();
const
config
=
window
.
specialImportantSystemConfig
||
{};
let
token
=
getToken
();
let
userInfo
=
getCurrentUser
();
if
(
token
&&
userInfo
.
token
===
token
)
{
return
new
Promise
(
(
resolve
)
=>
{
return
new
Promise
(
resolve
=>
{
resolve
(
userInfo
);
return
userInfo
;
});
}
if
(
config
.
mockServer
)
{
return
request
(
`
${
config
.
mockServer
}
/
${
config
.
gateWayUrl
.
zydxg
}
/UserApi/queryCurrent`
,
{
method
:
'POST'
,
body
:
{},
},
);
return
request
(
`
${
config
.
mockServer
}
/
${
config
.
gateWayUrl
.
zydxg
}
/UserApi/queryCurrent`
,
{
method
:
'POST'
,
body
:
{},
});
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论