Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
789cb895
提交
789cb895
authored
1月 08, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
泸职版本增加自定义表单 增加视频上传组件. 后台接口暂时用的雅职生产
token 获取方式 localstorage('uploadVideoServiceToken')
上级
4cfdf202
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
77 行增加
和
7 行删除
+77
-7
index.jsx
one_stop_public/tableCompon/index.jsx
+77
-7
没有找到文件。
one_stop_public/tableCompon/index.jsx
浏览文件 @
789cb895
...
@@ -55,6 +55,7 @@ import MobileDate from '../libs/MobileDate';
...
@@ -55,6 +55,7 @@ import MobileDate from '../libs/MobileDate';
import
ChildForm
from
'../libs/ChildForm'
;
import
ChildForm
from
'../libs/ChildForm'
;
import
Neo4jD3Com
from
'../libs/Neo4jD3Com'
;
import
Neo4jD3Com
from
'../libs/Neo4jD3Com'
;
import
ImgUploadCom
from
'../libs/ImgUploadCom'
;
import
ImgUploadCom
from
'../libs/ImgUploadCom'
;
import
VideoUploadCom
from
"../libs/VideoUploadCom"
;
import
moment
from
'moment'
;
import
moment
from
'moment'
;
import
router
from
'umi/router'
;
import
router
from
'umi/router'
;
import
TableList
from
'../libs/TableList'
;
import
TableList
from
'../libs/TableList'
;
...
@@ -63,21 +64,18 @@ import config from '@/webPublic/one_stop_public/config';
...
@@ -63,21 +64,18 @@ import config from '@/webPublic/one_stop_public/config';
import
{
isEmpty
,
isNaN
,
cloneDeep
}
from
'lodash'
;
import
{
isEmpty
,
isNaN
,
cloneDeep
}
from
'lodash'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
{
extend
}
from
'umi-request'
;
import
{
extend
}
from
'umi-request'
;
import
{
date
}
from
'../libs/formList/config'
;
import
Highlighter
from
'react-highlight-words'
;
import
Highlighter
from
'react-highlight-words'
;
import
Signature
from
'../Signature'
;
import
Signature
from
'../Signature'
;
import
baseX
from
'base-x'
;
import
{
changeToDraftState
}
from
'../utils/myutils'
;
import
{
changeToDraftState
}
from
'../utils/myutils'
;
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
base64
=
baseX
(
Bs64
);
import
{
Base16Encode
}
from
'../Base16/index'
;
import
{
Base16Encode
}
from
'../Base16/index'
;
import
{
getToken
}
from
'../utils/token'
;
import
{
getToken
}
from
'../utils/token'
;
import
{
formulaList
}
from
'../excelInitFuc/functionList'
;
import
{
formulaList
}
from
'../excelInitFuc/functionList'
;
import
FilePreview
from
'../filePreview'
;
import
FilePreview
from
'../filePreview'
;
import
DraftEditorCom
from
'../App/DraftEditorCom'
;
import
DraftEditorCom
from
'../App/DraftEditorCom'
;
import
MobileItem
from
'./MobileItem'
;
import
MobileItem
from
'./MobileItem'
;
const
Item
=
MobileList
.
Item
;
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
Brief
=
Item
.
Brief
;
const
base64
=
baseX
(
Bs64
)
;
function
getBase64
(
value
)
{
function
getBase64
(
value
)
{
return
value
?
base64
.
encode
(
new
Buffer
(
value
))
:
null
;
return
value
?
base64
.
encode
(
new
Buffer
(
value
))
:
null
;
}
}
...
@@ -1712,6 +1710,22 @@ export default class tableCom extends Component {
...
@@ -1712,6 +1710,22 @@ export default class tableCom extends Component {
);
);
}
}
break
;
case
'VideoUploadCom'
:
if
(
value
==
null
||
value
==
''
)
{
cm
=
<
div
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
>
</
div
>;
}
else
{
cm
=
(
<>
<
img
src=
{
config
.
httpServer
+
value
}
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
/>
{
get
===
'mobile'
?
<
br
/>
:
''
}
</>
);
}
break
;
break
;
}
}
if
(
get
===
'mobile'
)
{
if
(
get
===
'mobile'
)
{
...
@@ -2186,7 +2200,35 @@ export default class tableCom extends Component {
...
@@ -2186,7 +2200,35 @@ export default class tableCom extends Component {
break
;
break
;
case
'ImgUploadCom'
:
case
'ImgUploadCom'
:
if
(
obj
[
dataColumn
.
base52
]
==
null
||
obj
[
dataColumn
.
base52
]
==
''
)
{
if
(
obj
[
dataColumn
.
base52
]
==
null
||
obj
[
dataColumn
.
base52
]
==
''
)
{
cm
=
<
div
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
></
div
>;
cm
=
<
div
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
>
</
div
>;
}
else
{
cm
=
FilePreview
?
(
<
FilePreview
path=
{
config
.
httpServer
+
obj
[
dataColumn
.
base52
]
}
pathName=
{
obj
[
dataColumn
.
base52
]
}
width=
{
json
.
width
}
height=
{
json
.
height
}
/>
)
:
(
<
img
src=
{
config
.
httpServer
+
obj
[
dataColumn
.
base52
]
}
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
/>
);
}
break
;
case
'VideoUploadCom'
:
if
(
obj
[
dataColumn
.
base52
]
==
null
||
obj
[
dataColumn
.
base52
]
==
''
)
{
cm
=
<
div
style=
{
{
width
:
json
.
width
,
height
:
json
.
height
}
}
>
</
div
>;
}
else
{
}
else
{
cm
=
FilePreview
?
(
cm
=
FilePreview
?
(
<
FilePreview
<
FilePreview
...
@@ -3049,6 +3091,34 @@ export default class tableCom extends Component {
...
@@ -3049,6 +3091,34 @@ export default class tableCom extends Component {
);
);
}
}
break
;
break
;
case
'VideoUploadCom'
:
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
rules
:
json
.
vlds
&&
json
.
vlds
.
length
>
0
?
json
.
vlds
:
[{
required
:
required
,
message
:
'请上传视频'
}],
})(<
VideoUploadCom
json=
{
json
}
disabled=
{
disabled
}
/>);
if
(
get
===
'mobile'
&&
((
json
.
isMobileLabel
!=
null
&&
json
.
isMobileLabel
)
||
(
json
.
isMobileLabel
==
null
&&
json
.
isLabel
))
&&
title
)
{
cm
=
(
<
MobileItem
isPreview=
{
isPreview
}
labelCol=
{
{
span
:
json
.
labelSpan
}
}
wrapperCol=
{
{
span
:
json
.
wrapperSpan
}
}
label=
{
title
}
>
{
cm
}
</
MobileItem
>
);
}
break
;
case
'Signature'
:
case
'Signature'
:
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
initialValue
:
initValue
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论