Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Skyeye云
Skyeye
提交
3c8e1c13
S
Skyeye
项目概览
Skyeye云
/
Skyeye
通知
1433
Star
162
Fork
130
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3c8e1c13
编写于
6月 26, 2024
作者:
Skyeye云
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 表单布局新增组件复制功能
上级
d647718c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
50 addition
and
16 deletion
+50
-16
common/src/main/resources/template/js/dsFormPage/dsFormPageDesign.js
...main/resources/template/js/dsFormPage/dsFormPageDesign.js
+34
-1
common/src/main/resources/template/tpl/dsFormPage/dsFormPageDesign.html
...n/resources/template/tpl/dsFormPage/dsFormPageDesign.html
+1
-0
note/src/main/resources/template/js/index/myNote.js
note/src/main/resources/template/js/index/myNote.js
+15
-15
未找到文件。
common/src/main/resources/template/js/dsFormPage/dsFormPageDesign.js
浏览文件 @
3c8e1c13
...
...
@@ -20,8 +20,10 @@ layui.config({
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
dragula
'
,
'
tagEditor
'
,
'
table
'
].
concat
(
dsFormUtil
.
mastHaveImport
),
function
(
exports
)
{
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
dragula
'
,
'
tagEditor
'
,
'
table
'
,
'
ClipboardJS
'
].
concat
(
dsFormUtil
.
mastHaveImport
),
function
(
exports
)
{
winui
.
renderColor
();
// 复制对象
var
clipboard
;
var
index
=
parent
.
layer
.
getFrameIndex
(
window
.
name
);
var
$
=
layui
.
$
;
layedit
=
layui
.
layedit
,
...
...
@@ -56,6 +58,7 @@ layui.config({
item
=
dsFormUtil
.
loadComponent
(
'
showForm
'
,
item
);
}
$
(
"
#showForm div[contentId='
"
+
item
.
id
+
"
']
"
).
append
(
`<div class="btn-base">
<button type="button" class="btn btn-primary copyThis" data-clipboard-text="`
+
encodeURIComponent
(
JSON
.
stringify
(
item
))
+
`" title="复制"><i class="fa fa-copy"></i></button>
<button type="button" class="btn btn-danger removeThis" title="删除"><i class="fa fa-trash"></i></button>
</div>`
);
...
...
@@ -87,11 +90,41 @@ layui.config({
$
(
"
#editPageContent
"
).
attr
(
"
src
"
,
editContentPageUrl
);
});
// 粘贴
$
(
"
body
"
).
on
(
"
click
"
,
"
#paste
"
,
function
(
e
)
{
layer
.
open
({
type
:
1
,
title
:
'
粘贴脚本
'
,
area
:
[
'
50vw
'
,
'
50vh
'
],
content
:
'
<div style="padding: 20px;">
'
+
'
<textarea id="shellCode" name="shellCode" placeholder="请输入加密后的脚本" class="layui-textarea" style="height: 300px;"></textarea>
'
+
'
</div>
'
,
btn
:
[
'
确定
'
,
'
取消
'
],
yes
:
function
(
ii
,
layero
){
var
shellCode
=
layero
.
find
(
'
#shellCode
'
).
val
();
let
itemContent
=
JSON
.
parse
(
decodeURIComponent
(
shellCode
));
itemContent
.
attrKey
=
''
;
itemContent
.
id
=
getRandomValueToString
();
itemContent
.
attrDefinition
=
null
;
loadNewControl
(
itemContent
);
layer
.
close
(
ii
);
// 关闭页面层
}
});
})
function
loadPageMation
(
json
)
{
$
(
"
#attrBox
"
).
html
(
getDataUseHandlebars
(
$
(
"
#leftAttrBoxItem
"
).
html
(),
{
rows
:
attrList
}));
$
.
each
(
json
.
rows
,
function
(
i
,
item
)
{
loadNewControl
(
item
);
});
clipboard
=
new
ClipboardJS
(
'
.copyThis
'
);
clipboard
.
on
(
'
success
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
复制成功
"
,
{
icon
:
1
,
time
:
2000
});
});
clipboard
.
on
(
'
error
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
浏览器不支持!
"
,
{
icon
:
2
,
time
:
2000
});
});
matchingLanguage
();
}
...
...
common/src/main/resources/template/tpl/dsFormPage/dsFormPageDesign.html
浏览文件 @
3c8e1c13
...
...
@@ -23,6 +23,7 @@
</div>
<div
class=
"winui-toolbar center-box-form-toolbar"
>
<div
class=
"winui-tool"
>
<button
id=
"paste"
class=
"winui-toolbtn"
><i
class=
"fa fa-paste"
aria-hidden=
"true"
></i>
粘贴
</button>
<button
id=
"save"
class=
"winui-toolbtn"
><i
class=
"fa fa-save"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.save"
></language></button>
</div>
</div>
...
...
note/src/main/resources/template/js/index/myNote.js
浏览文件 @
3c8e1c13
...
...
@@ -425,21 +425,21 @@ layui.config({
var
shareUrl
=
homePagePath
+
"
tpl/note/shareNote.html?id=
"
+
clickId
;
var
json
=
{
"
bean
"
:{
"
shareUrl
"
:
shareUrl
}};
var
html
=
getDataUseHandlebars
(
getFileContent
(
'
tpl/note/shareNoteTemplate.tpl
'
),
json
);
layer
.
open
({
title
:
"
笔记链接
"
,
type
:
1
,
area
:
[
'
40vw
'
,
'
30vh
'
],
content
:
html
//这里content是一个普通的String
});
$
(
"
#copyBtn
"
).
attr
(
"
data-clipboard-text
"
,
shareUrl
);
//复制
clipboard
=
new
ClipboardJS
(
'
#copyBtn
'
);
clipboard
.
on
(
'
success
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
复制成功
"
,
{
icon
:
1
,
time
:
2000
});
});
clipboard
.
on
(
'
error
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
浏览器不支持!
"
,
{
icon
:
2
,
time
:
2000
});
});
layer
.
open
({
title
:
"
笔记链接
"
,
type
:
1
,
area
:
[
'
40vw
'
,
'
30vh
'
],
content
:
html
//这里content是一个普通的String
});
$
(
"
#copyBtn
"
).
attr
(
"
data-clipboard-text
"
,
shareUrl
);
//复制
clipboard
=
new
ClipboardJS
(
'
#copyBtn
'
);
clipboard
.
on
(
'
success
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
复制成功
"
,
{
icon
:
1
,
time
:
2000
});
});
clipboard
.
on
(
'
error
'
,
function
(
e
)
{
winui
.
window
.
msg
(
"
浏览器不支持!
"
,
{
icon
:
2
,
time
:
2000
});
});
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录