修改默认显示顺序

This commit is contained in:
RainSun 2020-12-28 20:10:45 +08:00
parent fb15d46d41
commit a28374c854
2 changed files with 32 additions and 9 deletions

View File

@ -4,7 +4,7 @@ export function lang() {
CHS: {
title: '密码本',
search: '搜索...',
menu: ['按首字母', '按最常使用'],
menu: ['按首字母', '按创建顺序', '按最常使用'],
drawer: ['账户', '设置', '生成密码', '更新日志', '分享链接', '下载apk', '立即锁定', '加入用户群'],
empty_state: {
label: '创建你的第一个密码',
@ -23,7 +23,7 @@ export function lang() {
EN: {
title: 'Codebook',
search: 'Search...',
menu: ['Alphabetically', 'Recently Used'],
menu: ['Alphabetically', 'Set Up Time', 'Recently Used'],
drawer: ['Account', 'Settings', 'Generate Password', 'Update Log', 'Share', 'Download apk', 'Lock Now', 'Join US'],
empty_state: {
label: 'Create your first code',
@ -310,6 +310,14 @@ export function lang() {
CHS: {
title: '更新日志',
timeline: [
{
label: '设置密码本默认显示顺序为使用频率',
tag:'功能更新',
content: [
'用多了还是觉得使用频率多的在上边好一些',
'2020-12-29'
]
},
{
label: '新增导入导出功能',
tag: '功能更新',
@ -459,6 +467,14 @@ export function lang() {
EN: {
title: 'Update Log',
timeline: [
{
label: 'Set the default display order of the password book to use frequency',
tag:'Feature update',
content: [
'Use much still feel to use frequency much in above a few better',
'2020-12-29'
]
},
{
label: 'New import and export function',
tag: 'Feature update',

View File

@ -19,7 +19,8 @@
</md-button>
<md-menu-content>
<md-menu-item @click="changeSortType('Alphabetically')">{{ lang.menu[0] }}</md-menu-item>
<md-menu-item @click="changeSortType('Recently Used')">{{ lang.menu[1] }}</md-menu-item>
<md-menu-item @click="changeSortType('Default')">{{ lang.menu[1] }}</md-menu-item>
<md-menu-item @click="changeSortType('Recently Used')">{{ lang.menu[2] }}</md-menu-item>
</md-menu-content>
</md-menu>
</div>
@ -164,6 +165,8 @@ export default {
clientHeight: "",
//
show_list: [],
//
row_list: [],
// list
cache_list: [],
unlock: false,
@ -244,7 +247,10 @@ export default {
this.turnToUnlock("密码错误");
return;
}
this.show_list = data_list;
//
this.row_list = JSON.parse(JSON.stringify(data_list))
//
this.show_list = data_list.sort((a, b) => b['open_count'] - a['open_count']);
// title
this.separateTitle(data_list);
//
@ -299,12 +305,13 @@ export default {
this.show_list = this.show_list.sort((a, b) =>
a["title"].localeCompare(b["title"])
);
} else if (type == "Default") {
//
this.show_list = JSON.parse(JSON.stringify(this.row_list));
} else {
// 使
this.show_list = this.show_list.sort(
(a, b) => b["open_count"] - a["open_count"]
);
}
// 使
this.show_list = this.show_list.sort((a, b) => b['open_count'] - a['open_count']);
}
},
//