Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
4cfdf202
提交
4cfdf202
authored
1月 07, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
泸职版本增加自定义表单 增加视频上传组件. 后台接口暂时用的雅职生产
token 获取方式 localstorage('uploadVideoServiceToken')
上级
3face9ee
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
122 行增加
和
5 行删除
+122
-5
index.js
FormInsertDiy/config/index.js
+1
-0
index.jsx
one_stop_public/Signature/index.jsx
+2
-5
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+0
-0
VideoUploadCom.jsx
one_stop_public/libs/VideoUploadCom.jsx
+119
-0
没有找到文件。
FormInsertDiy/config/index.js
浏览文件 @
4cfdf202
...
...
@@ -124,6 +124,7 @@ const transLate = {
RangePicker
:
'rangePicker'
,
UploadCom
:
'buttonUpload'
,
ImgUploadCom
:
'upload'
,
VideoUploadCom
:
'upload'
,
Input
:
'input'
,
TableSelect
:
'tableSelect'
,
// 表格选择
ChildForm
:
'childForm'
,
// 最终保存的数据还有问题
...
...
one_stop_public/Signature/index.jsx
浏览文件 @
4cfdf202
...
...
@@ -5,14 +5,10 @@
*/
import
React
,
{
Component
}
from
'react'
import
SignatureCanvas
from
'react-signature-canvas'
// import Button from '@/components/NewButton';
import
{
message
,
Button
}
from
'antd'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
baseX
from
'base-x'
;
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
base64
=
baseX
(
Bs64
);
import
reqwest
from
'reqwest'
;
function
dataURLtoBlob
(
toDataURL
)
{
var
arr
=
toDataURL
.
split
(
","
),
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
],
...
...
@@ -59,6 +55,7 @@ export default class index extends Component {
}
}
sigCanvas
=
{
clear
:()
=>
{},
toDataURL
:(
param
)
=>
{
return
""
}};
clear
=
()
=>
{
this
.
sigCanvas
.
clear
();
}
...
...
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
4cfdf202
one_stop_public/libs/VideoUploadCom.jsx
0 → 100644
浏览文件 @
4cfdf202
import
React
from
'react'
import
{
extend
}
from
'umi-request'
;
import
queryConfig
from
"@/utils/queryConfig"
;
import
{
Upload
,
message
}
from
'antd'
;
import
{
isJSON
}
from
"@/webPublic/one_stop_public/copy"
;
const
getToken
=
()
=>
{
const
x
=
localStorage
.
getItem
(
'uploadVideoServiceToken'
);
if
(
x
===
"null"
||
x
===
"undefined"
){
return
null
;
}
return
x
;
};
const
configService
=
queryConfig
(
'uploadVideoService'
);
const
token
=
getToken
();
const
umiRequest
=
extend
({
// errorHandler, // 默认错误处理
credentials
:
'omit'
,
// 默认请求是否带上cookie
mode
:
'cors'
,
});
export
default
class
VideoUploadCom
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
const
{
value
}
=
props
;
let
url
=
value
;
if
(
isJSON
(
value
))
{
url
=
JSON
.
parse
(
value
).
url
;
}
this
.
state
=
{
url
:
url
||
''
,
}
}
triggerChange
=
(
changedValue
)
=>
{
// Should provide an event to pass value to Form.
const
onChange
=
this
.
props
.
onChange
;
if
(
onChange
)
{
onChange
(
changedValue
);
}
};
componentWillReceiveProps
(
nextProps
)
{
// Should be a controlled component.
if
(
'value'
in
nextProps
)
{
const
{
value
}
=
nextProps
;
if
(
isJSON
(
value
))
{
this
.
setState
({
url
:
JSON
.
parse
(
value
).
url
,
});
}
}
}
changeUrl
=
(
info
,
key
)
=>
{
if
(
info
.
file
.
status
===
'done'
)
{
let
filePathThis
=
info
?.
file
?.
response
?.
data
?.
filePath
;
message
.
info
(
'视频正在转换中,请稍后'
);
if
(
filePathThis
)
{
setTimeout
(()
=>
{
umiRequest
(
`
${
configService
}
/folderApi/findByPath?token=
${
token
}
&path=
${
filePathThis
}
`
,
{
method
:
'GET'
}).
then
((
res
)
=>
{
if
(
res
&&
res
.
data
)
{
let
info
=
res
.
data
;
const
{
screenshots
,
url
,
createTime
,
downloadUrl
,
filePath
}
=
info
;
let
needInfo
=
{
screenshots
,
url
,
createTime
,
downloadUrl
,
filePath
,
};
message
.
success
(
`视频上传成功`
);
this
.
triggerChange
(
JSON
.
stringify
(
needInfo
));
}
});
},
5000
);
}
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`视频上传失败`
);
}
};
render
()
{
const
{
json
,
disabled
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
console
.
log
(
url
);
return
(
<
Upload
.
Dragger
disabled=
{
disabled
}
accept=
{
'.mp4,.webm,.ogg'
}
url=
{
url
}
showUploadList=
{
false
}
name=
"file"
action=
{
configService
+
'/uploadFileApi/upload'
}
onChange=
{
this
.
changeUrl
}
multiple=
{
false
}
data=
{
{
isConvert
:
true
,
token
,
}
}
style=
{
{
padding
:
0
}
}
>
{
url
?
<
video
src=
{
url
}
controls
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
,
}
}
/>
:
<
div
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
>
</
div
>
}
</
Upload
.
Dragger
>
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论