Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zys-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
龙菲
zys-ui
Commits
477ee4a5
提交
477ee4a5
authored
9月 05, 2023
作者:
龙菲
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复我的笔记无法编辑笔记的问题
上级
e0d5a9e8
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
26 行增加
和
10 行删除
+26
-10
BreadCrumb.vue
src/components/common/BreadCrumb.vue
+1
-2
noteByFile.vue
src/views/mine/myNote/components/noteByFile.vue
+3
-1
noteByTag.vue
src/views/mine/myNote/components/noteByTag.vue
+22
-7
没有找到文件。
src/components/common/BreadCrumb.vue
浏览文件 @
477ee4a5
...
@@ -11,8 +11,7 @@
...
@@ -11,8 +11,7 @@
v-show=
"isShowInput"
v-show=
"isShowInput"
@
blur=
"handleInputBlurEnter"
@
blur=
"handleInputBlurEnter"
@
change=
"handleInputBlurEnter"
@
change=
"handleInputBlurEnter"
></el-input>
></el-input>
-->
123 -->
<div
<div
class=
"breadcrumb-box"
class=
"breadcrumb-box"
@
click
.
self=
"handleClickBreadCrumbSelf"
@
click
.
self=
"handleClickBreadCrumbSelf"
...
...
src/views/mine/myNote/components/noteByFile.vue
浏览文件 @
477ee4a5
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
</div>
</div>
<div
:span=
"19"
class=
"right"
>
<div
:span=
"19"
class=
"right"
>
<div
class=
"note-container"
>
<div
class=
"note-container"
>
<div
class=
"card-group"
>
<div
class=
"card-group"
v-if=
"noteList.records.length>0"
>
<el-card
<el-card
class=
"card-item"
class=
"card-item"
shadow=
"hover"
shadow=
"hover"
...
@@ -136,6 +136,7 @@
...
@@ -136,6 +136,7 @@
</el-pagination>
</el-pagination>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<AddOrUpdateNoteDialog
<AddOrUpdateNoteDialog
...
@@ -396,6 +397,7 @@ export default {
...
@@ -396,6 +397,7 @@ export default {
margin-bottom
:
16px
;
margin-bottom
:
16px
;
.card-head
{
.card-head
{
margin-bottom
:
16px
;
margin-bottom
:
16px
;
height
:
24px
;
.tag
{
.tag
{
float
:
left
;
float
:
left
;
}
}
...
...
src/views/mine/myNote/components/noteByTag.vue
浏览文件 @
477ee4a5
...
@@ -20,9 +20,7 @@
...
@@ -20,9 +20,7 @@
>
>
</div>
</div>
<div
class=
"total"
>
<div
class=
"total"
>
共计
{{
tagList
.
total
}}
条数据
</div>
共计
{{
tagList
.
total
}}
条数据
</div>
<el-row
class=
"list"
>
<el-row
class=
"list"
>
<el-col
<el-col
v-for=
"(item, index) in tagList.records"
v-for=
"(item, index) in tagList.records"
...
@@ -136,6 +134,11 @@
...
@@ -136,6 +134,11 @@
</div>
</div>
</div>
</div>
</div>
</div>
<AddOrUpdateNoteDialog
:formData=
"form"
ref=
"AddOrUpdateNoteDialog"
@
update=
"handleUpdateNoteList"
/>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -162,6 +165,12 @@ export default {
...
@@ -162,6 +165,12 @@ export default {
total
:
0
,
total
:
0
,
},
},
loading
:
false
,
loading
:
false
,
form
:
{
docId
:
""
,
//文档Id
bookmarkContent
:
""
,
//原文内容
noteContent
:
""
,
//笔记内容
tagsArr
:
[],
//标签
},
};
};
},
},
computed
:
{
computed
:
{
...
@@ -284,6 +293,11 @@ export default {
...
@@ -284,6 +293,11 @@ export default {
this
.
tagList
.
currentPage
=
value
;
this
.
tagList
.
currentPage
=
value
;
this
.
loadNoteList
();
this
.
loadNoteList
();
},
},
// 更新右侧获取笔记
handleUpdateNoteList
()
{
this
.
loadNoteList
();
},
},
},
};
};
</
script
>
</
script
>
...
@@ -375,17 +389,18 @@ export default {
...
@@ -375,17 +389,18 @@ export default {
margin-bottom
:
16px
;
margin-bottom
:
16px
;
.card-head
{
.card-head
{
margin-bottom
:
16px
;
margin-bottom
:
16px
;
height
:
24px
;
// display: flex;
// display: flex;
// justify-content: space-between;
// justify-content: space-between;
.tag
{
.tag
{
float
:
left
;
float
:
left
;
}
}
.oprations
{
.oprations
{
float
:
right
;
float
:
right
;
// display: flex;
// display: flex;
// justify-content: flex-end;
// justify-content: flex-end;
margin-bottom
:
8px
;
margin-bottom
:
8px
;
.el-link
{
.el-link
{
margin-right
:
16px
;
margin-right
:
16px
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论