Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
eeb2bf51
提交
eeb2bf51
authored
3月 25, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
8f9abf3d
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
121 行增加
和
1 行删除
+121
-1
index.jsx
one_stop_public/Signature/index.jsx
+120
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+1
-1
没有找到文件。
one_stop_public/Signature/index.jsx
0 → 100644
浏览文件 @
eeb2bf51
/**
* 徐立
* 2019年12月6日
* 电子签章多功能封装
*/
import
React
,
{
Component
}
from
'react'
import
SignatureCanvas
from
'react-signature-canvas'
// import Button from '@/components/NewButton';
import
{
message
,
Button
}
from
'antd'
;
import
config
from
'../config/config'
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
reqwest
from
'reqwest'
;
function
dataURLtoFile
(
dataurl
,
filename
)
{
var
arr
=
dataurl
.
split
(
','
),
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
],
bstr
=
atob
(
arr
[
1
]),
n
=
bstr
.
length
,
u8arr
=
new
Uint8Array
(
n
);
while
(
n
--
)
{
u8arr
[
n
]
=
bstr
.
charCodeAt
(
n
);
}
return
new
File
([
u8arr
],
filename
,
{
type
:
mime
});
}
export
default
class
index
extends
Component
{
constructor
(
props
){
super
(
props
);
const
value
=
props
.
value
;
this
.
state
=
{
url
:
value
,
}
}
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
.
value
;
this
.
setState
({
url
:
value
});
//
}
}
sigCanvas
=
{
clear
:()
=>
{},
toDataURL
:(
param
)
=>
{
return
""
}};
clear
=
()
=>
{
this
.
sigCanvas
.
clear
();
}
delete
=
()
=>
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
null
});
}
this
.
triggerChange
(
null
);
}
trim
=
()
=>
{
const
formData
=
new
FormData
()
formData
.
append
(
'file'
,
dataURLtoFile
(
this
.
sigCanvas
.
toDataURL
(
'image/png'
),
"sign.png"
))
reqwest
({
url
:
config
.
uploadUrl
,
method
:
'post'
,
processData
:
false
,
data
:
formData
,
success
:
(
url
)
=>
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
url
});
}
this
.
triggerChange
(
url
);
message
.
success
(
'保存成功'
);
},
error
:
(
e
)
=>
{
if
(
e
.
status
==
200
){
message
.
success
(
'保存成功'
);
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
e
.
response
});
}
this
.
triggerChange
(
e
.
response
);
}
else
{
message
.
error
(
'保存失败'
);
}
},
});
//let trimmedCanvas = this.sigCanvas.getTrimmedCanvas();
// this.setState({trimmedDataURL: this.sigCanvas.toDataURL('image/png')})
}
render
()
{
const
{
width
,
height
}
=
this
.
props
const
{
url
}
=
this
.
state
return
(
<
div
id=
'canvas_signature'
style=
{
{
width
:
'100%'
,
height
:
'100%'
}
}
>
<
div
style=
{
{
width
:
width
,
textAlign
:
'center'
,
height
:
height
,
border
:
'1px dashed gray'
,
position
:
'relative'
}
}
>
{
url
?<
img
src=
{
config
.
httpServer
+
url
}
style=
{
{
width
:
width
,
height
:
height
}
}
/>:
<
SignatureCanvas
penColor=
'black'
ref=
{
(
ref
)
=>
{
this
.
sigCanvas
=
ref
}
}
canvasProps=
{
{
width
:
width
||
400
,
height
:
height
||
200
,
className
:
'sigCanvas'
}
}
/>
}
<
div
style=
{
{
position
:
'absolute'
,
right
:
20
,
bottom
:
20
}
}
>
{
url
?<
Button
style=
{
{
marginRight
:
12
}
}
type=
'danger'
onClick=
{
this
.
delete
}
>
重写签名
</
Button
>:<>
<
Button
style=
{
{
marginRight
:
12
}
}
type=
'danger'
onClick=
{
this
.
clear
}
>
清除签名
</
Button
>
<
Button
onClick=
{
this
.
trim
}
type=
'primary'
>
保存签名
</
Button
></>
}
</
div
>
</
div
>
</
div
>
)
}
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
eeb2bf51
...
@@ -58,7 +58,7 @@ import { queryApiActionPath } from "../utils/queryConfig";
...
@@ -58,7 +58,7 @@ import { queryApiActionPath } from "../utils/queryConfig";
import
{
extend
}
from
'umi-request'
;
import
{
extend
}
from
'umi-request'
;
import
{
date
}
from
'../libs/formList/config'
;
import
{
date
}
from
'../libs/formList/config'
;
import
Highlighter
from
'react-highlight-words'
;
import
Highlighter
from
'react-highlight-words'
;
import
Signature
from
'
@/components
/Signature'
;
import
Signature
from
'
..
/Signature'
;
import
baseX
from
'base-x'
import
baseX
from
'base-x'
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
const
base64
=
baseX
(
Bs64
)
const
base64
=
baseX
(
Bs64
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论