Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
08f942ba
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1172
Star
154
Fork
127
代码
文件
提交
分支
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看板
提交
08f942ba
编写于
1月 26, 2024
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 笔记修改
上级
acf90511
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
22 deletion
+23
-22
note/src/main/resources/template/js/index/myNote.js
note/src/main/resources/template/js/index/myNote.js
+17
-16
note/src/main/resources/template/js/note/noteEdit.js
note/src/main/resources/template/js/note/noteEdit.js
+2
-2
note/src/main/resources/template/js/note/noteEditLuckysheet.js
...src/main/resources/template/js/note/noteEditLuckysheet.js
+2
-2
note/src/main/resources/template/js/note/noteEditMarkDown.js
note/src/main/resources/template/js/note/noteEditMarkDown.js
+2
-2
未找到文件。
note/src/main/resources/template/js/index/myNote.js
浏览文件 @
08f942ba
...
...
@@ -450,23 +450,23 @@ layui.config({
// 默认展示当前最新的笔记
showNewNoteList
();
//树操作--新建文件夹
//
树操作--新建文件夹
$
(
"
body
"
).
on
(
"
click
"
,
"
.treecreateNewFolder
"
,
function
(
e
)
{
noteId
=
""
;
if
(
folderId
==
"
1
"
)
{
if
(
folderId
==
"
1
"
)
{
folderId
=
"
2
"
;
}
hideRMenu
();
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
mynote002
"
,
params
:
{
parentId
:
folderId
,
catalogName
:
'
新建文件夹
'
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
//刷新节点
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
writeFolder
"
,
params
:
{
parentId
:
folderId
,
name
:
'
新建文件夹
'
},
type
:
'
json
'
,
method
:
'
POST
'
,
callback
:
function
(
json
)
{
//
刷新节点
refreshTreePointNode
();
folderId
=
json
.
bean
.
id
;
showListById
();
//获取文件夹和笔记列表
//执行延时
setTimeout
(
function
()
{
showListById
();
//
执行延时
setTimeout
(
function
()
{
var
selNode
=
ztree
.
getNodeByParam
(
"
id
"
,
json
.
bean
.
id
,
null
);
ztree
.
editName
(
selNode
);
},
1000
);
},
1000
);
}});
});
...
...
@@ -587,15 +587,16 @@ layui.config({
// 新增笔记
function
addNote
(
title
,
type
){
if
(
folderId
==
"
1
"
)
{
thisfolderId
=
"
2
"
;
}
else
{
thisfolderId
=
folderId
;
}
if
(
folderId
==
"
1
"
)
{
thisfolderId
=
"
2
"
;
}
else
{
thisfolderId
=
folderId
;
}
hideRMenu
();
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
mynote007
"
,
params
:
{
parentId
:
thisfolderId
,
title
:
title
,
type
:
type
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
noteId
=
json
.
bean
.
id
;
showListById
();
// 获取文件夹和笔记列表
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
writeNote
"
,
params
:
{
parentId
:
thisfolderId
,
name
:
title
,
type
:
type
},
type
:
'
json
'
,
method
:
'
POST
'
,
callback
:
function
(
json
)
{
noteId
=
json
.
bean
.
id
;
// 获取文件夹和笔记列表
showListById
();
}});
}
...
...
note/src/main/resources/template/js/note/noteEdit.js
浏览文件 @
08f942ba
...
...
@@ -17,10 +17,10 @@ layui.config({
var
noteId
=
parent
.
noteId
;
// 显示编辑器内容
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
mynote008
"
,
params
:
{
rowId
:
noteId
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
queryNoteById
"
,
params
:
{
id
:
noteId
},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
ue
=
ueEditorUtil
.
initEditor
(
'
container
'
);
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
titl
e
);
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
nam
e
);
ue
.
addListener
(
"
ready
"
,
function
()
{
ue
.
setContent
(
isNull
(
json
.
bean
.
content
)
?
""
:
json
.
bean
.
content
);
var
height
=
$
(
"
.manage-console
"
).
height
()
-
$
(
"
.edui-editor-toolbarbox
"
).
height
()
-
$
(
"
.edui-editor-bottomContainer
"
).
height
()
-
15
;
...
...
note/src/main/resources/template/js/note/noteEditLuckysheet.js
浏览文件 @
08f942ba
...
...
@@ -13,8 +13,8 @@ layui.config({
form
.
render
();
// 显示编辑器内容
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
mynote008
"
,
params
:
{
rowId
:
noteId
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
titl
e
);
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
queryNoteById
"
,
params
:
{
id
:
noteId
},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
nam
e
);
var
param
=
{
container
:
'
luckysheet
'
,
showtoolbar
:
true
,
...
...
note/src/main/resources/template/js/note/noteEditMarkDown.js
浏览文件 @
08f942ba
...
...
@@ -36,8 +36,8 @@ layui.config({
initPasteDragImg
(
this
);
// 加载后富文本编辑器成功后的回调
// 显示编辑器内容
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
mynote008
"
,
params
:
{
rowId
:
noteId
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
titl
e
);
AjaxPostUtil
.
request
({
url
:
sysMainMation
.
noteBasePath
+
"
queryNoteById
"
,
params
:
{
id
:
noteId
},
type
:
'
json
'
,
method
:
"
GET
"
,
callback
:
function
(
json
)
{
parent
.
$
(
"
#noteTitle
"
).
val
(
json
.
bean
.
nam
e
);
layEditor
.
setMarkdown
(
json
.
bean
.
content
);
matchingLanguage
();
}});
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录