fix redirct to create main password page

This commit is contained in:
RainSun 2020-09-02 07:31:29 +08:00
parent 22fa58a27d
commit 31ee125bbd
3 changed files with 18 additions and 3 deletions

View File

@ -284,6 +284,14 @@ export function lang() {
CHS:{
title: '更新日志',
timeline: [
{
label: '修复密码本为空的情况下解锁页面变为创建主密码',
tag:'bug修复',
content: [
'密码本为空的情况下,解锁的页面会变成创建主密码,会进行不必要的输入,已修复',
'2020-09-02'
]
},
{
label: '长理专版密码本改造完成',
tag:'功能更新',
@ -417,6 +425,14 @@ export function lang() {
EN:{
title: 'Update Log',
timeline: [
{
label: 'Fix that the unlock page becomes create master password when the password book is empty',
tag:'Bug fix',
content: [
'When the password book is empty, the unlocked page will become the creation of the master password, and unnecessary input will be made, which is fixed',
'2020-09-02'
]
},
{
label: 'Changli special edition codebook transformation completed',
tag:'Feature update',

View File

@ -232,7 +232,7 @@ export default {
user_name: 'A Little Canary',
cid: 'Codebook',
row_login_pwd: '',
drivce: this.settings.is_chinese ? '暂无' : 'unknown',
drivce: '',
cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown',
update_time: new Date().getTime()
};

View File

@ -92,7 +92,7 @@ export default {
this.$store.replaceState(Object.assign(this.$store.state, JSON.parse(localStorage.getItem('storeState'))));
this.initLanguage();
//
this.is_create = this.row_data ? false : true;
this.is_create = !this.row_data && !this.user_infos.drivce;
},
//
@ -163,7 +163,6 @@ export default {
create_time: new Date().getTime()
};
let user_infos = this.user_infos
console.log(user_infos, this.drivce)
user_infos.drivce = this.drivce
this.setUserInfo([user_infos, this])
this.setRowPwd([row_pwd, this]);