Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
ed3bbe32
提交
ed3bbe32
authored
4月 24, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复bug
上级
4658d3e9
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
38 行增加
和
28 行删除
+38
-28
index.jsx
one_stop_public/filePreview/index.jsx
+3
-3
UploadCom.js
one_stop_public/libs/UploadCom.js
+1
-1
index.jsx
one_stop_public/tableCompon/index.jsx
+34
-24
没有找到文件。
one_stop_public/filePreview/index.jsx
浏览文件 @
ed3bbe32
...
...
@@ -3,7 +3,7 @@
*/
import
React
,
{
Component
}
from
'react'
;
import
{
Modal
,
Icon
,
Tooltip
,
Popconfirm
}
from
'antd'
;
//
import FileViewer from 'react-file-viewer';
import
FileViewer
from
'react-file-viewer'
;
export
default
class
index
extends
Component
{
constructor
(
props
){
super
(
props
)
...
...
@@ -123,13 +123,13 @@ export default class index extends Component {
height
:
600
,
}
}
>
{
/*
<FileViewer
<
FileViewer
fileType=
{
type
}
filePath=
{
path
}
// onError=
{
this
.
onError
}
// errorComponent=
{
Error
}
// unsupportedComponent=
{
Error
}
/>
*/
}
/>
</
div
>
}
...
...
one_stop_public/libs/UploadCom.js
浏览文件 @
ed3bbe32
...
...
@@ -78,7 +78,7 @@ export default class UploadCom extends React.Component {
<
/Upload
>
<
ul
style
=
{{
paddingLeft
:
8
}}
>
{
files
.
map
((
f
)
=>
{
if
(
f
.
path
.
indexOf
(
'.png'
)
!=-
1
||
f
.
path
.
indexOf
(
'.jpg'
)
!=-
1
){
if
(
f
.
path
&&
f
.
path
.
indexOf
(
'.png'
)
!=-
1
||
f
.
path
.
indexOf
(
'.jpg'
)
!=-
1
){
return
<
li
key
=
{
f
.
path
}
><
img
style
=
{{
width
:
100
,
height
:
100
}}
src
=
{
queryApiActionPath
()
+
f
.
path
}
/><Icon style={{marginLeft:10}} type="delete" onClick={this.remove.bind
(
this,f.path
)
} /
><
/li
>
}
return
<
li
key
=
{
f
.
path
}
><
a
target
=
"_blank"
key
=
{
f
.
path
}
href
=
{
queryApiActionPath
()
+
f
.
path
}
>
{
f
.
name
}
<
/a> <Icon style={{marginLeft:10}} type="delete" onClick={this.remove.bind
(
this,f.path
)
} /
><
/li
>
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
ed3bbe32
...
...
@@ -65,7 +65,7 @@ const base64 = baseX(Bs64)
import
{
Base16Encode
}
from
"../Base16/index"
import
{
getToken
}
from
'../utils/token'
;
import
{
formulaList
}
from
'../excelInitFuc/functionList'
;
//
import FilePreview from '../filePreview';
import
FilePreview
from
'../filePreview'
;
const
Item
=
MobileList
.
Item
;
const
Brief
=
Item
.
Brief
;
function
getBase64
(
value
)
{
...
...
@@ -1665,15 +1665,9 @@ export default class tableCom extends Component {
if
(
json
.
isLabel
)
{
if
(
!
isEdit
&&
obj
.
defaultValues
&&
obj
.
defaultValues
[
formKey
])
{
if
(
obj
.
defaultValues
&&
obj
.
defaultValues
[
formKey
])
{
if
(
!
isEdit
){
return
(
// <Form.Item
// labelCol={{ span: json.labelSpan }}
// wrapperCol={{ span: json.wrapperSpan }}
// label={json.label ? json.label : sqlData[key] ? sqlData[key].title : ""}
// >
// {cm}
// </Form.Item>
<
Row
style=
{
{
minHeight
:
40
,
...
...
@@ -1706,7 +1700,18 @@ export default class tableCom extends Component {
{
cm
}
</
Col
>
</
Row
>
);
)
}
else
{
return
(
<
Form
.
Item
labelCol=
{
{
span
:
json
.
labelSpan
}
}
wrapperCol=
{
{
span
:
json
.
wrapperSpan
}
}
label=
{
json
.
label
?
json
.
label
:
sqlData
[
key
]
?
sqlData
[
key
].
title
:
""
}
>
{
cm
}
</
Form
.
Item
>
)
}
}
else
{
if
(
get
===
'mobile'
)
{
/**
...
...
@@ -1937,12 +1942,12 @@ export default class tableCom extends Component {
if
(
f
.
path
.
indexOf
(
'.png'
)
!=
-
1
||
f
.
path
.
indexOf
(
'.jpg'
)
!=
-
1
)
{
return
<
img
key=
{
index2
}
style=
{
{
width
:
100
,
height
:
100
}
}
src=
{
queryApiActionPath
()
+
f
.
path
}
/>
}
//
if(get === 'web')
{
//
return <li key=
{
index2
}
>
<
FilePreview
//
path=
{
queryApiActionPath
()
+
f
.
path
}
//
pathName=
{
f
.
name
}
//
/></li>
//
}
if
(
get
===
'web'
){
return
<
li
key=
{
index2
}
><
FilePreview
path=
{
queryApiActionPath
()
+
f
.
path
}
pathName=
{
f
.
name
}
/></
li
>
}
return
<
li
key=
{
index2
}
><
a
target=
"_blank"
key=
{
f
.
path
}
href=
{
queryApiActionPath
()
+
f
.
path
}
>
{
f
.
name
}
...
...
@@ -2705,14 +2710,8 @@ export default class tableCom extends Component {
// return <Row><Col span=
{
6
}
>
{
title
}:
<
/Col><Col span={18}>{cm}</
Col
>
<
/
Row
>
}
if (get === 'web')
{
if
(
!
isEdit
){
return
(
// <Form.Item
// labelCol=
{{
span
:
json
.
labelSpan
}}
// wrapperCol=
{{
span
:
json
.
wrapperSpan
}}
// label=
{
title
}
// >
//
{
cm
}
// </Form.Item>
<
Row
style=
{
{
minHeight
:
40
,
...
...
@@ -2745,7 +2744,18 @@ export default class tableCom extends Component {
{
cm
}
</
Col
>
</
Row
>
);
)
}
else
{
return
(
<
Form
.
Item
labelCol=
{
{
span
:
json
.
labelSpan
}
}
wrapperCol=
{
{
span
:
json
.
wrapperSpan
}
}
label=
{
title
}
>
{
cm
}
</
Form
.
Item
>
)
}
}
else
{
return
cm
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论