Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
1d99fc59
提交
1d99fc59
authored
5月 27, 2020
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
打印预览修改
上级
b241d72f
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
56 行增加
和
21 行删除
+56
-21
DetailDom.js
zyd_private/DragAndPrint/ViewPrint/DetailDom.js
+40
-14
index.js
zyd_private/DragAndPrint/ViewPrint/index.js
+10
-6
index.js
zyd_private/DragAndPrint/index.js
+1
-0
services.js
zyd_private/DragAndPrint/services.js
+5
-1
没有找到文件。
zyd_private/DragAndPrint/ViewPrint/DetailDom.js
浏览文件 @
1d99fc59
import
React
from
'react'
;
import
JsBarcode
from
'jsbarcode'
;
import
styles
from
'../index.less'
;
import
moment
from
'moment'
;
/**
* -2 条形码
* -1 常量
...
...
@@ -16,29 +16,46 @@ const normalTextRender = (text, config) => {
}
const
style
=
{
fontSize
:
`
${
config
.
fieldFontSize
||
16
}
px`
,
// 默认 16px
fontFamily
:
`
${
config
.
fieldFont
||
'黑体'
}
`
,
// 默认黑体
fontFamily
:
`
${
config
.
fieldFont
||
'黑体'
}
`
,
// 默认黑体
包括 ('宋体','楷体','黑体','隶书','微软雅黑等字体'}
};
return
<
span
style
=
{
style
}
>
{
text
}
<
/span>
;
};
const
imageRender
=
(
imageUrl
)
=>
{
return
<
img
src
=
{
imageUrl
}
// TODO 这里图片样式需要考虑怎么兼容所有业务
style
=
{{
height
:
'100%'
,
width
:
'auto'
,
}}
/>
;
};
class
BarCode
extends
React
.
Component
{
componentDidMount
()
{
this
.
toJsBarcode
();
}
toJsBarcode
()
{
// 调用 JsBarcode方法生成条形码
JsBarcode
(
this
.
barcode
,
this
.
props
.
value
||
'1234567890'
,
{
const
{
value
}
=
this
.
props
;
let
info
=
value
;
if
(
/.*
[\u
4e00-
\u
9fa5
]
+.*$/
.
test
(
value
))
{
info
=
'error'
;
console
.
log
(
'条形码包含中文不能输出'
,
value
);
}
JsBarcode
(
this
.
barcode
,
info
,
{
text
:
''
,
format
:
'CODE
39
'
,
format
:
'CODE
128
'
,
displayValue
:
false
,
width
:
1.0
,
height
:
30
,
margin
:
0
,
});
return
true
;
}
componentDidMount
()
{
this
.
toJsBarcode
();
}
render
()
{
...
...
@@ -72,23 +89,32 @@ export default function DetailDom({ config, data }) {
};
let
children
=
null
;
switch
(
config
.
fieldType
)
{
case
'-2'
:
// 条形码
case
'-2'
:
children
=
<
BarCode
value
=
{
data
}
/>
;
break
;
case
'-1'
:
// 常量
children
=
normalTextRender
(
config
.
content
,
config
);
break
;
case
'0'
:
// 文字
children
=
normalTextRender
(
data
,
config
);
case
'0'
:
// 文字 带参数
let
text
=
data
;
const
strPlace
=
config
.
content
&&
config
.
content
.
indexOf
(
'${'
);
if
(
strPlace
>
-
1
)
{
const
str
=
`\${
${
config
.
fieldCode
}
}`
;
text
=
config
.
content
.
replace
(
str
,
text
);
}
children
=
normalTextRender
(
text
,
config
);
break
;
case
'1'
:
// 时间
children
=
normalTextRender
(
config
.
content
,
config
);
let
time
=
data
;
time
=
moment
(
time
).
format
(
config
.
fieldPattern
||
'YYYY-MM-DD'
);
children
=
normalTextRender
(
time
,
config
);
break
;
case
'2'
:
// 照片
children
=
normalTextRender
(
config
.
content
,
config
);
case
'2'
:
// 照片
图章
children
=
imageRender
(
data
);
break
;
default
:
children
=
normalTextRender
(
config
.
content
,
config
);
console
.
error
(
'未知的打印数据类型,无法渲染'
);
children
=
null
;
break
;
}
return
outSideDom
(
children
);
...
...
zyd_private/DragAndPrint/ViewPrint/index.js
浏览文件 @
1d99fc59
...
...
@@ -16,7 +16,7 @@ export default class ViewPrint extends Component {
configAll
:
null
,
viewData
:
null
,
loading
:
false
,
minHeight
:
70
0
,
minHeight
:
0
,
showWindowPrint
:
false
,
};
this
.
getConfigInfo
=
queryConfig
.
bind
(
this
);
...
...
@@ -50,6 +50,7 @@ export default class ViewPrint extends Component {
if
(
!
viewData
||
!
viewData
.
length
)
{
message
.
warning
(
'未查询到可打印的奖状数据'
);
console
.
error
(
`
${
x
.
queryUrl
}
接口报错或者没有返回数据`
);
return
false
;
}
this
.
setState
({
viewData
,
...
...
@@ -68,15 +69,14 @@ export default class ViewPrint extends Component {
configAll
:
{
config
},
}
=
this
.
state
;
const
res
=
[];
for
(
let
item
of
config
)
{
if
(
item
.
fieldCode
&&
data
[
item
.
fieldCode
]
)
{
console
.
log
(
config
);
for
(
const
item
of
config
)
{
res
.
push
(
DetailDom
({
config
:
item
,
data
:
data
[
item
.
fieldCode
],
}),
);
}
}
return
res
;
};
...
...
@@ -118,7 +118,11 @@ export default class ViewPrint extends Component {
showWindowPrint
,
minHeight
,
}
=
this
.
state
;
if
(
!
configAll
)
{
if
(
!
viewData
||
!
minHeight
)
{
return
null
;
}
if
(
!
configAll
.
backgroundUrl
){
console
.
error
(
'没有设置模版图片无法使用'
);
return
null
;
}
const
{
hasPrintBackground
,
backgroundUrl
}
=
configAll
;
...
...
@@ -188,7 +192,7 @@ export default class ViewPrint extends Component {
className
=
{
styles
.
outSideDivPrint
}
key
=
{
`
${
index
}
divKey`
}
style
=
{{
minHeight
,
minHeight
:
minHeight
||
700
,
}}
>
{
hasPrintBackground
?
(
<
img
...
...
zyd_private/DragAndPrint/index.js
浏览文件 @
1d99fc59
...
...
@@ -60,6 +60,7 @@ export default class Index extends Component {
if
(
!
configAll
||
!
configAll
.
backgroundUrl
)
{
return
null
;
}
console
.
log
(
configAll
);
return
(
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
}}
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 24px 12px'
}}
>
...
...
zyd_private/DragAndPrint/services.js
浏览文件 @
1d99fc59
...
...
@@ -20,8 +20,12 @@ export const queryConfig = function() {
return
false
;
}
x
.
config
=
x
.
config
.
filter
((
y
)
=>
{
// 过滤不显示的字段.
return
y
.
hasHidden
===
fals
e
;
return
y
.
hasHidden
!==
tru
e
;
});
if
(
!
x
.
config
.
length
){
console
.
error
(
'没有有效的配置项'
);
return
false
;
}
this
.
setState
({
configAll
:
x
,
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论