Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
cd715d42
提交
cd715d42
authored
6月 10, 2020
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
打印修改
上级
c28e41ee
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
72 行增加
和
28 行删除
+72
-28
index2.js
zyd_private/DragAndPrint/ViewPrint/index2.js
+72
-28
没有找到文件。
zyd_private/DragAndPrint/ViewPrint/index2.js
浏览文件 @
cd715d42
...
...
@@ -44,7 +44,7 @@ export default class ViewPrint extends Component {
}
let
i
=
0
;
for
(
const
item
of
viewData
)
{
// item.name = ['黎处', '王昊楠', '古力娜扎', '古丽尼帕尔·阿布都黑利力'][i] || '钟是志';
// item.name = ['黎处', '王昊楠', '古力娜扎', '古丽尼帕尔·阿布都黑利力'][i] || '钟是志';
i
++
;
for
(
let
z
in
item
)
{
if
(
item
[
z
]
===
null
||
item
[
z
]
===
'null'
)
{
...
...
@@ -91,28 +91,58 @@ export default class ViewPrint extends Component {
return
res
;
};
printOne
=
(
review
=
false
)
=>
{
printOne
=
(
optionType
=
0
)
=>
{
const
{
printIndex
,
configAll
,
viewData
}
=
this
.
state
;
const
{
printMeth
}
=
configAll
;
const
{
wide
,
high
}
=
configAll
;
const
{
LODOP
}
=
window
;
let
strHTML
=
document
.
getElementById
(
`printDomId_
${
printIndex
}
`
).
innerHTML
;
if
(
review
)
{
strHTML
=
document
.
getElementById
(
`printDomId_0`
).
innerHTML
;
let
dom
=
document
.
getElementById
(
`printDomId-
${
printIndex
}
`
)
;
if
(
optionType
>=
1
)
{
dom
=
document
.
getElementById
(
'printDomId-0'
)
;
}
LODOP
.
PRINT_INITA
(
0
,
0
,
`
${
wide
}
cm`
,
`
${
high
}
cm`
,
`printDomId_
${
printIndex
}
`
);
LODOP
.
SET_PRINT_PAGESIZE
(
printMeth
,
`
${
wide
}
cm`
,
`
${
high
}
cm`
,
'CreateCustomPage'
);
// 打印方向
if
(
!
dom
)
{
console
.
error
(
'dom节点没找到'
);
return
false
;
}
const
strHTML
=
dom
.
innerHTML
;
LODOP
.
PRINT_INITA
(
0
,
0
,
`
${
wide
}
cm`
,
`
${
high
}
cm`
,
`printDomId-
${
Math
.
random
()
*
10000
}
`
,
);
LODOP
.
SET_PRINT_PAGESIZE
(
printMeth
,
`
${
wide
}
cm`
,
`
${
high
}
cm`
,
'CreateCustomPage'
,
);
// 打印方向
LODOP
.
ADD_PRINT_HTM
(
0
,
0
,
'100%'
,
'100%'
,
strHTML
);
// HTML 打印
if
(
review
)
{
LODOP
.
PREVIEW
();
// 打印预览
}
else
{
LODOP
.
PRINT
();
// 打印
switch
(
optionType
)
{
case
1
:
LODOP
.
PREVIEW
();
// 打印预览
break
;
case
2
:
debugger
;
LODOP
.
PRINT_DESIGN
();
break
;
case
0
:
LODOP
.
PRINT
();
// 打印
break
;
default
:
break
;
}
};
printPreview
=
()
=>
{
// 打印预览
this
.
printOne
(
true
);
this
.
printOne
(
1
);
};
printSetUp
=
()
=>
{
this
.
printOne
(
2
);
};
printedDataSave
=
(
index
)
=>
{
...
...
@@ -143,7 +173,7 @@ export default class ViewPrint extends Component {
LODOPObj
.
On_Return_Remain
=
true
;
LODOPObj
.
On_Return
=
(
TaskId
,
Value
)
=>
{
if
(
Number
(
Value
)
===
1
)
{
message
.
info
(
`正在打印第
${
printIndex
+
1
}
张`
);
message
.
info
(
`正在打印第
${
printIndex
+
1
}
张
, 共
${
viewData
.
length
}
张
`
);
this
.
printedDataSave
(
printIndex
);
}
this
.
setState
({
printIndex
:
this
.
state
.
printIndex
+
1
},
()
=>
{
...
...
@@ -171,7 +201,7 @@ export default class ViewPrint extends Component {
{
showWindowPrint
:
true
,
printIndex
:
0
,
loading
:
true
,
loading
:
true
,
},
()
=>
{
this
.
printOneByOne
();
...
...
@@ -182,16 +212,18 @@ export default class ViewPrint extends Component {
render
()
{
const
{
configAll
,
viewData
,
showWindowPrint
,
loading
}
=
this
.
state
;
if
(
!
viewData
)
{
return
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
}}
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
}}
>
<
ButtonDiy
name
=
{
'返回'
}
handleClick
=
{()
=>
{
router
.
goBack
();
}}
/
>
<
/div
>
<
/Shell>
;
return
(
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
}}
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
}}
>
<
ButtonDiy
name
=
{
'返回'
}
handleClick
=
{()
=>
{
router
.
goBack
();
}}
/
>
<
/div
>
<
/Shell
>
);
}
if
(
!
configAll
.
backgroundUrl
)
{
console
.
error
(
'没有设置模版图片无法使用'
);
...
...
@@ -207,9 +239,9 @@ export default class ViewPrint extends Component {
const
templateInfo
=
templateCode
.
find
((
x
)
=>
{
return
x
.
path
===
pathname
;
});
if
(
!
templateInfo
)
{
console
.
error
(
'未找到templateInfo'
,
pathname
);
}
if
(
!
templateInfo
)
{
console
.
error
(
'未找到templateInfo'
,
pathname
);
}
return
(
<
Fragment
>
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
}}
>
...
...
@@ -236,6 +268,18 @@ export default class ViewPrint extends Component {
}}
/
>
<
Authorized
authority
=
{
'/jc/setting/PrintPositionSetting'
}
>
<
span
style
=
{{
float
:
'right'
}}
>
<
ButtonDiy
name
=
{
'打印调试模式(实施)'
}
handleClick
=
{()
=>
{
this
.
printSetUp
();
}}
loading
=
{
loading
}
/
>
<
/span
>
<
/Authorized
>
<
Authorized
authority
=
{
'/jc/setting/PrintPositionSetting'
}
>
<
span
style
=
{{
float
:
'right'
}}
>
<
ButtonDiy
...
...
@@ -284,7 +328,7 @@ export default class ViewPrint extends Component {
}}
>
{
viewData
.
map
((
info
,
index
)
=>
{
return
(
<
div
key
=
{
`
${
index
}
divKey`
}
id
=
{
`printDomId
_
${
index
}
`
}
>
<
div
key
=
{
`
${
index
}
divKey`
}
id
=
{
`printDomId
-
${
index
}
`
}
>
<
div
style
=
{{
position
:
'relative'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论