Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c4b6843d
提交
c4b6843d
authored
5月 09, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
18292…
18292 统招板块:通知书打印需要增加生源所在省份和科类、打印在做一个查询添加(已打印和未打印)、操作换成单独打印或者屏蔽、录取通知书格式管理自定义,选择对应信息启用、通知书中的条形码下增加学生的考生号。
上级
f14ac3c4
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
180 行增加
和
10 行删除
+180
-10
index.js
zyd_private/DragAndPrint/index.js
+0
-2
RefactoringOld.js
zyd_public/components/DraggableSetting/RefactoringOld.js
+167
-0
index.js
zyd_public/components/DraggableSetting/index.js
+1
-0
index.less
zyd_public/components/DraggableSetting/index.less
+1
-0
old.js
zyd_public/components/DraggableSetting/old.js
+11
-8
没有找到文件。
zyd_private/DragAndPrint/index.js
浏览文件 @
c4b6843d
...
...
@@ -7,12 +7,10 @@
* 后续可以会应用于其他学校的其他 打印.
* */
import
React
,
{
Component
}
from
'react'
;
import
{
getInfo
}
from
'@/highOrderComponent/Service'
;
import
PropTypes
from
'prop-types'
;
import
DragSetting
from
'./DragSetting'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
router
from
'umi/router'
;
import
{
message
}
from
'antd'
;
import
{
saveConfig
,
queryConfig
}
from
'./services'
;
...
...
zyd_public/components/DraggableSetting/RefactoringOld.js
0 → 100644
浏览文件 @
c4b6843d
/**
* 钟是志
* 2021年5月9日 10:50:02
* 重构拖拽字段组件old.js. 适用于宝鸡录取通知书打印
* */
import
React
,
{
Fragment
,
Component
,
useRef
,
useState
,
useEffect
}
from
'react'
;
import
styles
from
'./index.less'
;
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
{
ModalConfirm
}
from
'@/baseComponent/Modal'
;
let
time1
=
new
Date
().
getTime
();
export
default
function
NewDraggableSetting
(
props
)
{
const
{
bgImage
,
// 背景图url 字符串
formatSettingObject
,
// 字段配置信息 数组
saveConfig
,
// 保存 方法
initConfig
,
// 初始化配置项 方法
updateFormatSettingObject
,
// 更新格式化 方法
id
,
// 'printDom' 字符串
}
=
props
;
const
[
drag
,
setDrag
]
=
useState
({
objX
:
'0px'
,
objY
:
'0px'
,
mouseY
:
0
,
mouseX
:
0
,
});
const
[
isDownObj
,
setIsDownObj
]
=
useState
({});
const
configInfo
=
Object
.
keys
(
formatSettingObject
);
function
initInfoThis
()
{
ModalConfirm
(
'您确定初始化打印录取通知书格式吗?'
,
{
onOk
:
()
=>
{
initConfig
();
},
});
}
function
handleOnMouseDown
(
e
){
// 鼠标按钮 按下
const
id
=
e
.
target
.
id
;
const
div
=
document
.
getElementById
(
id
);
const
newDrag
=
{
objX
:
div
.
style
.
left
,
objY
:
div
.
style
.
top
,
mouseX
:
e
.
clientX
,
mouseY
:
e
.
clientY
,
};
for
(
let
item
in
isDownObj
)
{
isDownObj
[
item
]
=
false
;
}
isDownObj
[
id
]
=
true
;
setDrag
(
newDrag
);
setIsDownObj
(
isDownObj
);
}
function
handleOnMouseUp
(
e
){
// 鼠标 按钮 收起 更新数据到props
const
id
=
e
.
target
.
id
;
let
{
mouseX
,
mouseY
,
objX
,
objY
}
=
drag
;
if
(
isDownObj
[
id
])
{
let
x
=
e
.
clientX
;
let
y
=
e
.
clientY
;
let
div
=
document
.
getElementById
(
id
);
const
styleLeft
=
parseInt
(
x
,
10
)
-
parseInt
(
mouseX
,
10
)
+
parseInt
(
objX
,
10
);
const
styleTop
=
parseInt
(
y
,
10
)
-
parseInt
(
mouseY
,
10
)
+
parseInt
(
objY
,
10
);
div
.
style
.
left
=
`
${
styleLeft
}
px`
;
div
.
style
.
top
=
`
${
styleTop
}
px`
;
mouseX
=
x
;
mouseY
=
y
;
updateFormatSettingObject
(
id
,
styleLeft
,
styleTop
);
// 更新 偏移量 left top 和 元素
setDrag
({
mouseX
,
mouseY
,
objX
,
objY
,
})
setIsDownObj
({});
}
}
function
handleOnMouseMove
(
e
){
// 鼠标 移动
if
(
new
Date
().
getTime
()
-
time1
<
17
)
{
// 每17毫秒进行一次移动的计算.
time1
=
new
Date
().
getTime
();
return
false
;
}
let
id
=
''
;
for
(
let
item
in
isDownObj
)
{
if
(
isDownObj
[
item
])
{
id
=
item
;
}
}
if
(
!
id
)
{
return
false
;
}
let
{
mouseX
,
mouseY
,
objX
,
objY
}
=
drag
;
const
div
=
document
.
getElementById
(
id
);
let
x
=
e
.
clientX
;
let
y
=
e
.
clientY
;
if
(
isDownObj
&&
isDownObj
[
id
])
{
const
styleLeft
=
parseInt
(
objX
,
10
)
+
parseInt
(
x
,
10
)
-
parseInt
(
mouseX
,
10
);
// 计算偏移量
const
styleTop
=
parseInt
(
objY
,
10
)
+
parseInt
(
y
,
10
)
-
parseInt
(
mouseY
,
10
);
// 计算偏移量
const
dropZone
=
document
.
getElementById
(
'dropZone'
);
// console.log('styleLeft', styleLeft, 'dropW', dropZone.width);
// console.log('styleTop', styleTop, dropZone.height);
if
(
// 阻止拖拽到图片外部
styleLeft
>
dropZone
.
width
-
50
||
(
styleLeft
<
15
)
||
(
styleTop
>
dropZone
.
height
-
50
)
||
styleTop
<
15
)
{
console
.
error
(
'拖拽到了图片区域外部,不能进行拖拽'
);
return
false
;
}
div
.
style
.
left
=
styleLeft
+
'px'
;
div
.
style
.
top
=
styleTop
+
'px'
;
}
}
return
(
<
Fragment
>
<
Shell
styleShell
=
{{
marginTop
:
'0'
,
marginBottom
:
'20px'
,
}}
>
<
div
style
=
{{
height
:
'54px'
,
padding
:
'12px 0 12px 12px'
,
}}
>
<
ButtonDiy
name
=
"保存"
className
=
"primary"
handleClick
=
{
saveConfig
}
/
>
<
ButtonDiy
name
=
{
'初始化格式'
}
handleClick
=
{
initInfoThis
}
/
>
<
/div
>
<
/Shell
>
<
div
className
=
{
styles
.
outSideDiv
}
onMouseMove
=
{
handleOnMouseMove
}
>
<
div
>
<
img
src
=
{
bgImage
}
id
=
{
'dropZone'
}
draggable
=
{
false
}
className
=
{
styles
.
bgimage
}
alt
=
{
'背景图'
}
/
>
{
configInfo
.
map
((
x
)
=>
{
return
(
<
div
className
=
{
styles
.
inSideItem
}
key
=
{
x
}
onMouseDown
=
{
handleOnMouseDown
}
onMouseUp
=
{
handleOnMouseUp
}
id
=
{
x
}
style
=
{
formatSettingObject
[
x
].
style
}
>
{
formatSettingObject
[
x
].
title
}
<
/div
>
);
})}
<
/div
>
<
/div
>
<
/Fragment>
)
;
}
zyd_public/components/DraggableSetting/index.js
浏览文件 @
c4b6843d
...
...
@@ -3,6 +3,7 @@
* 一站式请勿使用此组件
* 2020年5月9日 拖拽组件
* 钟是志
* 黔南的 录取通知书打印 位置设置
* */
import
React
,
{
Fragment
,
Component
}
from
'react'
;
...
...
zyd_public/components/DraggableSetting/index.less
浏览文件 @
c4b6843d
...
...
@@ -18,5 +18,6 @@
line-height: 28px;
border: 1px solid gray;
background-color: #CCC;
user-select: none;
}
}
zyd_public/components/DraggableSetting/old.js
浏览文件 @
c4b6843d
...
...
@@ -10,8 +10,14 @@ import styles from './index.less';
import
ButtonDiy
from
'@/baseComponent/ButtonDiy'
;
import
Shell
from
'@/baseComponent/Shell'
;
import
{
ModalConfirm
}
from
'@/baseComponent/Modal'
;
import
RefactorOld
from
'./RefactoringOld'
;
export
default
RefactorOld
;
export
default
class
FormatSetting
extends
Component
{
class
FormatSetting
extends
Component
{
dragEventList
=
()
=>
{
const
{
formatSettingObject
,
updateFormatSettingObject
}
=
this
.
props
;
...
...
@@ -44,7 +50,7 @@ export default class FormatSetting extends Component {
return
false
;
}
const
top
=
event
.
offsetY
;
updateFormatSettingObject
(
draggedRef
.
id
,
left
,
top
);
updateFormatSettingObject
(
draggedRef
.
id
,
left
,
top
);
// 更新 偏移量 left top 和 元素
draggedRef
.
style
.
left
=
left
;
// `${left}px`;
draggedRef
.
style
.
top
=
top
;
// `${top}px`;
}
...
...
@@ -59,7 +65,7 @@ export default class FormatSetting extends Component {
initConfig
=
()
=>
{
ModalConfirm
(
'您确定初始化打印录取通知书格式吗?'
,{
onOk
:
()
=>
{
onOk
:
()
=>
{
this
.
props
.
initConfig
();
},
});
...
...
@@ -91,7 +97,7 @@ export default class FormatSetting extends Component {
/
>
{
configInfo
.
map
((
x
)
=>
{
return
(
<
div
draggable
=
{
true
}
<
div
draggable
=
{
true
}
// 支持拖拽的dom
className
=
{
styles
.
inSideItem
}
key
=
{
x
}
id
=
{
x
}
...
...
@@ -101,13 +107,10 @@ export default class FormatSetting extends Component {
<
/div
>
);
})}
<
/div
>
<
/div
>
<
/Fragment
>
;
}
}
/***
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论