Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
a397373d
提交
a397373d
authored
6月 04, 2020
作者:
徐立
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
http://scjoyedu.eicp.net:9121/front-team/webPublic
上级
551b5ddf
c751592a
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
344 行增加
和
29 行删除
+344
-29
index.jsx
one_stop_public/Signature/index.jsx
+19
-14
DetailDom.js
zyd_private/DragAndPrint/ViewPrint/DetailDom.js
+7
-3
config.js
zyd_private/DragAndPrint/ViewPrint/config.js
+31
-0
index.js
zyd_private/DragAndPrint/ViewPrint/index.js
+0
-12
index2.js
zyd_private/DragAndPrint/ViewPrint/index2.js
+287
-0
没有找到文件。
one_stop_public/Signature/index.jsx
浏览文件 @
a397373d
...
@@ -9,23 +9,27 @@ import SignatureCanvas from 'react-signature-canvas'
...
@@ -9,23 +9,27 @@ import SignatureCanvas from 'react-signature-canvas'
import
{
message
,
Button
}
from
'antd'
;
import
{
message
,
Button
}
from
'antd'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
{
queryApiActionPath
}
from
"../utils/queryConfig"
;
import
baseX
from
'base-x'
;
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
base64
=
baseX
(
Bs64
);
import
reqwest
from
'reqwest'
;
import
reqwest
from
'reqwest'
;
function
dataURLtoFile
(
dataurl
,
filename
)
{
function
dataURLtoBlob
(
toDataURL
)
{
var
arr
=
dataurl
.
split
(
','
),
var
arr
=
toDataURL
.
split
(
","
),
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
],
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
],
bstr
=
atob
(
arr
[
1
]),
bstr
=
atob
(
arr
[
1
]),
n
=
bstr
.
length
n
=
bstr
.
length
,
u8arr
=
new
Uint8Array
(
n
);
if
(
n
<=
2220
){
message
.
error
(
'请进行签名'
);
return
null
;
}
var
u8arr
=
new
Uint8Array
(
n
);
while
(
n
--
)
{
while
(
n
--
)
{
u8arr
[
n
]
=
bstr
.
charCodeAt
(
n
);
u8arr
[
n
]
=
bstr
.
charCodeAt
(
n
);
}
}
return
new
File
([
u8arr
],
filename
,
{
type
:
mime
});
return
new
Blob
([
u8arr
],
{
type
:
mime
});
}
function
blobToFile
(
Blob
,
fileName
)
{
Blob
.
lastModifiedDate
=
new
Date
();
Blob
.
name
=
fileName
;
return
Blob
;
}
}
export
default
class
index
extends
Component
{
export
default
class
index
extends
Component
{
constructor
(
props
){
constructor
(
props
){
super
(
props
);
super
(
props
);
...
@@ -66,7 +70,8 @@ export default class index extends Component {
...
@@ -66,7 +70,8 @@ export default class index extends Component {
}
}
trim
=
()
=>
{
trim
=
()
=>
{
const
formData
=
new
FormData
()
const
formData
=
new
FormData
()
const
file
=
dataURLtoFile
(
this
.
sigCanvas
.
toDataURL
(
'image/png'
))
const
xx
=
dataURLtoBlob
(
this
.
sigCanvas
.
toDataURL
(
'image/png'
))
const
file
=
blobToFile
(
xx
,
"sign.png"
)
if
(
file
==
null
){
if
(
file
==
null
){
return
return
...
...
zyd_private/DragAndPrint/ViewPrint/DetailDom.js
浏览文件 @
a397373d
...
@@ -138,13 +138,17 @@ export default function DetailDom({ config, data }) {
...
@@ -138,13 +138,17 @@ export default function DetailDom({ config, data }) {
const
outSideDom
=
(
children
)
=>
{
const
outSideDom
=
(
children
)
=>
{
return
(
return
(
<
div
<
div
className
=
{
styles
.
inSideItemPrint
}
key
=
{
`filed
${
config
.
id
}
`
}
style
=
{{
style
=
{{
position
:
'absolute'
,
zIndex
:
10
,
paddingLeft
:
'10px'
,
paddingRight
:
'10px'
,
fontWeight
:
'bold'
,
left
:
x
+
'px'
,
left
:
x
+
'px'
,
top
:
y
+
'px'
,
top
:
y
+
'px'
,
transform
:
transform
?
`rotate(
${
transform
}
deg)`
:
'none'
,
transform
:
transform
?
`rotate(
${
transform
}
deg)`
:
'none'
,
}}
>
}}
key
=
{
`filed
${
config
.
id
}
`
}
>
{
children
}
{
children
}
<
/div
>
<
/div
>
);
);
...
...
zyd_private/DragAndPrint/ViewPrint/config.js
浏览文件 @
a397373d
import
{
message
}
from
'antd'
;
import
{
ModalConfirm
,
ModalInfo
}
from
'@/baseComponent/Modal'
;
export
const
A4Height
=
'29.6cm'
;
export
const
A4Height
=
'29.6cm'
;
export
const
A4Width
=
'20.9cm'
;
export
const
A4Width
=
'20.9cm'
;
export
const
imageStyleAll
=
{
export
const
imageStyleAll
=
{
width
:
'100%'
,
width
:
'100%'
,
height
:
'100%'
,
height
:
'100%'
,
};
};
export
function
getCLodopFuncJS
()
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
window
.
LODOP
){
console
.
log
(
'打印插件加载成功'
);
resolve
(
true
);
return
true
;
}
let
sc
=
document
.
createElement
(
'script'
);
sc
.
src
=
`http://localhost:18000/CLodopFuncs.js`
;
document
.
querySelector
(
'body'
).
appendChild
(
sc
);
sc
.
onload
=
function
()
{
resolve
(
true
);
console
.
log
(
'打印插件加载成功'
);
};
sc
.
onerror
=
function
()
{
resolve
(
false
);
ModalConfirm
(
'请下载并运行打印控件后刷新本页面继续打印!'
+
'点击确定进行控件下载'
,
{
title
:
'未获取到打印控件'
,
onOk
:
()
=>
{
window
.
open
(
'/CLodop_32_Print.zip'
);
},
});
};
});
}
zyd_private/DragAndPrint/ViewPrint/index.js
浏览文件 @
a397373d
...
@@ -82,18 +82,6 @@ export default class ViewPrint extends Component {
...
@@ -82,18 +82,6 @@ export default class ViewPrint extends Component {
componentDidMount
()
{
componentDidMount
()
{
this
.
getViewData
();
this
.
getViewData
();
if
(
window
.
matchMedia
)
{
const
mediaQueryList
=
window
.
matchMedia
(
'print'
);
console
.
log
(
mediaQueryList
);
mediaQueryList
.
addListener
(
function
(
mql
)
{
if
(
mql
.
matches
)
{
this
.
beforePrint
();
}
else
{
this
.
afterPrint
();
}
});
}
}
}
detailDom
=
(
data
)
=>
{
detailDom
=
(
data
)
=>
{
...
...
zyd_private/DragAndPrint/ViewPrint/index2.js
0 → 100644
浏览文件 @
a397373d
import
React
,
{
Component
,
Fragment
}
from
'react'
;
import
{
queryConfig
}
from
'../services'
;
import
{
getInfo
}
from
'@/highOrderComponent/Service'
;
import
{
message
,
Button
}
from
'antd'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
ReactToPrint
from
'react-to-print'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
router
from
'umi/router'
;
import
styles
from
'../index.less'
;
import
DetailDom
from
'./DetailDom'
;
import
{
imageStyleAll
,
A4Width
,
A4Height
,
getCLodopFuncJS
}
from
'./config'
;
export
default
class
ViewPrint
extends
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
state
=
{
configAll
:
null
,
viewData
:
null
,
loading
:
true
,
minHeight
:
0
,
showWindowPrint
:
false
,
};
this
.
getConfigInfo
=
queryConfig
.
bind
(
this
);
}
countImageHeight
=
()
=>
{
if
(
!
this
.
state
.
configAll
)
{
return
false
;
}
const
{
configAll
:
{
backgroundUrl
},
}
=
this
.
state
;
const
img
=
new
Image
();
img
.
src
=
backgroundUrl
;
img
.
onload
=
()
=>
{
this
.
setState
({
minHeight
:
img
.
height
,
});
};
};
getViewData
=
()
=>
{
const
{
selectedRows
}
=
this
.
props
;
const
ids
=
selectedRows
.
map
((
x
)
=>
x
.
id
);
this
.
getConfigInfo
().
then
((
x
)
=>
{
this
.
countImageHeight
();
if
(
x
&&
x
.
queryUrl
)
{
getInfo
(
{
ids
:
ids
.
join
(
','
),
},
x
.
queryUrl
,
).
then
((
viewData
)
=>
{
if
(
!
viewData
||
!
viewData
.
length
)
{
message
.
warning
(
'未查询到可打印的奖状数据'
);
console
.
error
(
`
${
x
.
queryUrl
}
接口报错或者没有返回数据`
);
return
false
;
}
for
(
const
item
of
viewData
)
{
for
(
let
z
in
item
)
{
if
(
item
[
z
]
===
null
||
item
[
z
]
===
'null'
)
{
item
[
z
]
=
''
;
}
}
}
this
.
setState
({
viewData
,
});
});
}
});
};
beforePrint
=
()
=>
{
console
.
log
(
'beforePrint'
);
};
afterPrint
=
()
=>
{
console
.
log
(
'afterPrint'
);
};
componentDidMount
()
{
this
.
getViewData
();
getCLodopFuncJS
().
then
((
response
)
=>
{
if
(
response
)
{
this
.
setState
({
loading
:
false
,
});
}
});
}
detailDom
=
(
data
)
=>
{
const
{
configAll
:
{
config
},
}
=
this
.
state
;
const
res
=
[];
for
(
const
item
of
config
)
{
res
.
push
(
DetailDom
({
config
:
item
,
data
:
data
[
item
.
fieldCode
],
}),
);
}
return
res
;
};
onBeforeGetContent
=
()
=>
{
this
.
setState
({
loading
:
true
,
});
return
new
Promise
((
resolve
,
reject
)
=>
{
const
{
selectedRows
}
=
this
.
props
;
const
{
configAll
}
=
this
.
state
;
if
(
configAll
.
callUrl
&&
false
)
{
const
ids
=
selectedRows
.
map
((
x
)
=>
{
return
x
.
id
;
});
// 暂时关闭调用这个接口 不通知后台是否打印了
getInfo
({
ids
:
ids
.
join
(
','
)
},
configAll
.
callUrl
).
then
((
x
)
=>
{
if
(
x
)
{
this
.
setState
({
showWindowPrint
:
true
},
()
=>
{
resolve
(
true
);
});
}
else
{
resolve
(
true
);
}
});
}
else
{
this
.
setState
({
showWindowPrint
:
true
},
()
=>
{
resolve
(
true
);
});
}
});
};
printByLodop
=
()
=>
{
const
{
configAll
}
=
this
.
state
;
const
{
hasPrintBackground
,
backgroundUrl
,
wide
,
high
}
=
configAll
;
this
.
setState
({
showWindowPrint
:
true
,
},
()
=>
{
let
strHTML
=
this
.
content
.
innerHTML
;
window
.
LODOP
.
PRINT_INIT
(
''
);
// window.LODOP.PRINT_INITA(1, 1, 770, 660, '测试预览功能');
// window.LODOP.ADD_PRINT_TEXT(10, 60, 300, 200, '这是测试的纯文本,下面是超文本:');
window
.
LODOP
.
ADD_PRINT_HTM
(
0
,
0
,
`
${
wide
}
cm`
,
`
${
high
}
cm`
,
strHTML
);
window
.
LODOP
.
PREVIEW
();
window
.
LODOP
.
On_Return
=
function
(
TaskId
,
Value
)
{
console
.
log
(
TaskId
,
Value
);
if
(
Value
===
'1'
||
Value
===
1
)
{
alert
(
'已发出实际打印命令!'
);
}
else
{
alert
(
'放弃打印!'
);
}
};
});
};
render
()
{
const
{
loading
,
configAll
,
viewData
,
showWindowPrint
,
minHeight
,
}
=
this
.
state
;
if
(
!
viewData
||
!
minHeight
)
{
return
null
;
}
if
(
!
configAll
.
backgroundUrl
)
{
console
.
error
(
'没有设置模版图片无法使用'
);
return
null
;
}
const
{
hasPrintBackground
,
backgroundUrl
,
wide
,
high
}
=
configAll
;
const
imageStyle
=
{
height
:
`
${
high
}
cm`
||
A4Height
,
width
:
`
${
wide
}
cm`
||
A4Width
,
};
return
(
<
Fragment
>
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
}}
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
}}
>
<
ButtonDiy
name
=
{
'打印'
}
handleClick
=
{
this
.
printByLodop
}
/
>
{
/* <ReactToPrint
trigger={() => (
<Button
shape="round"
type="primary"
loading={loading}
style={{ marginRight: '20px' }}>
打印
</Button>
)}
content={() => this.content}
onBeforeGetContent={this.onBeforeGetContent}
onAfterPrint={() => {
this.setState({
showWindowPrint: false,
loading: false,
});
}}
/>*/
}
<
ButtonDiy
name
=
{
'返回'
}
handleClick
=
{()
=>
{
router
.
goBack
();
}}
/
>
<
/div
>
<
/Shell
>
{
/** 预览的dom **/
}
{
viewData
&&
viewData
.
length
?
(
<
div
>
{
viewData
.
map
((
info
,
index
)
=>
{
return
(
<
div
className
=
{
styles
.
outSideDivPrint
}
key
=
{
index
+
'divKey'
}
style
=
{{
...
imageStyle
,
}}
>
<
img
src
=
{
backgroundUrl
}
draggable
=
{
false
}
className
=
{
styles
.
bgimagePrint
}
alt
=
{
'背景图'
}
style
=
{
imageStyleAll
}
/
>
{
this
.
detailDom
(
info
)}
<
/div
>
);
})}
<
/div
>
)
:
null
}
{
/** 打印的dom */
}
{
viewData
&&
viewData
.
length
?
(
<
div
ref
=
{(
node
)
=>
(
this
.
content
=
node
)}
style
=
{{
display
:
showWindowPrint
?
'block'
:
'none'
,
}}
>
{
viewData
.
map
((
info
,
index
)
=>
{
return
(
<
div
key
=
{
`
${
index
}
divKey`
}
style
=
{{
position
:
'relative'
,
width
:
'auto'
,
pageBreakAfter
:
'always'
,
...
imageStyle
,
}}
>
{
hasPrintBackground
&&
false
?
(
<
img
src
=
{
backgroundUrl
}
draggable
=
{
false
}
alt
=
{
'背景图'
}
style
=
{{
height
:
'auto'
,
overflow
:
'auto'
,
zIndex
:
1
,
...
imageStyleAll
,
}}
/
>
)
:
null
}
{
this
.
detailDom
(
info
)}
<
/div
>
);
})}
<
/div
>
)
:
null
}
<
/Fragment
>
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论