Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
cf8be3f5
提交
cf8be3f5
编写于
9月 23, 2020
作者:
Neuromancer255
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
锚点列表插件 --fix1
上级
75835ffe
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
24 行增加
和
22 行删除
+24
-22
app-anchor-list.vue
src/components/app-anchor-list/app-anchor-list.vue
+24
-22
未找到文件。
src/components/app-anchor-list/app-anchor-list.vue
浏览文件 @
cf8be3f5
...
...
@@ -82,8 +82,14 @@ export default class AppQuickGroupTab extends Vue {
this
.
$forceUpdate
();
// 根据分组属性进行排序
this
.
showItems
.
push
(...
this
.
items
);
this
.
reSort
(
this
.
showItems
);
this
.
showItems
.
push
(...
newVal
);
this
.
showItems
.
sort
((
prev
:
any
,
next
:
any
)
=>
{
let
x
:
any
=
prev
.
group
;
let
y
:
any
=
next
.
group
;
if
(
x
<
y
)
{
return
-
1
}
if
(
x
>
y
)
{
return
1
}
return
0
;
});
// 没有分组的单独处理
this
.
unSetGroupHandled
();
...
...
@@ -99,7 +105,7 @@ export default class AppQuickGroupTab extends Vue {
// item_click(item)
/**
*
监控items变化
*
锚点列表处理
*
* @memberof AppQuickGroup
*/
...
...
@@ -115,15 +121,26 @@ export default class AppQuickGroupTab extends Vue {
return
this
.
anchorList
.
indexOf
(
anchor
,
0
)
===
index
;
});
// 锚点列表排序
this
.
reSort
(
this
.
anchorList
);
this
.
anchorList
.
sort
((
prev
:
any
,
next
:
any
)
=>
{
let
x
:
any
=
prev
;
let
y
:
any
=
next
;
if
(
x
<
y
)
{
return
-
1
}
if
(
x
>
y
)
{
return
1
}
return
0
;
});
}
/**
* 列表项点击事件
*
* @memberof AppQuickGroup
*/
public
termClick
(
item
:
any
)
{
this
.
$emit
(
"termClick"
,
item
)
}
/**
*
监控items变化
*
未分组项处理
*
* @memberof AppQuickGroup
*/
...
...
@@ -137,22 +154,7 @@ export default class AppQuickGroupTab extends Vue {
}
/**
* 监控items变化
*
* @memberof AppQuickGroup
*/
public
reSort
(
array
:
any
)
{
array
.
sort
((
prev
:
any
,
next
:
any
)
=>
{
let
x
:
any
=
prev
;
let
y
:
any
=
next
;
if
(
x
<
y
)
{
return
-
1
}
if
(
x
>
y
)
{
return
1
}
return
0
;
});
}
/**
* 监控items变化
* 设置锚点
*
* @memberof AppQuickGroup
*/
...
...
@@ -172,7 +174,7 @@ export default class AppQuickGroupTab extends Vue {
}
/**
*
监控items变化
*
锚点跳转
*
* @memberof AppQuickGroup
*/
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录