fix drivce problem

This commit is contained in:
RainSun 2020-09-02 10:14:04 +08:00
parent 31ee125bbd
commit 52845ed311
3 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ export const api = axios.create({
// baseURL: 'https://ccb.canary.moe/api/', // baseURL: 'https://ccb.canary.moe/api/',
baseURL: window.location.origin + '/api/', baseURL: window.location.origin + '/api/',
// baseURL: 'https://canary.lacus.site/api/', // baseURL: 'https://canary.lacus.site/api/',
// baseURL: 'http://canary.lacus.icu/api/', // baseURL: 'https://canary.lacus.icu/api/',
// baseURL: 'http://beta.lacus.site/api/', // baseURL: 'http://beta.lacus.site/api/',
// baseURL: 'http://152.136.99.231:8001' + '/api/', // baseURL: 'http://152.136.99.231:8001' + '/api/',
headers: { headers: {

View File

@ -200,11 +200,11 @@ export default {
manageLoginRes(data) { manageLoginRes(data) {
// //
let user_infos = { let user_infos = {
...this.user_infos,
cid: this.cid, cid: this.cid,
row_login_pwd: encryptMainCode(this.password), row_login_pwd: encryptMainCode(this.password),
user_name: data.username, user_name: data.username,
update_time: data.modified, update_time: data.modified,
drivce: this.user_infos.drivce,
cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown' cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown'
}; };
this.setUserInfo([user_infos, this]); this.setUserInfo([user_infos, this]);
@ -347,10 +347,10 @@ export default {
startLogout() { startLogout() {
// //
let user_infos = { let user_infos = {
...this.user_infos,
user_name: 'A Little Canary', user_name: 'A Little Canary',
cid: 'Codebook', cid: 'Codebook',
row_login_pwd: '', row_login_pwd: '',
drivce: this.user_infos.drivce,
cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown', cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown',
update_time: new Date().getTime() update_time: new Date().getTime()
}; };

View File

@ -204,7 +204,7 @@ export default {
}, },
// //
resetAccount(need_loading = true) { resetAccount(need_loading = true, need_reset_drvice = false) {
this.reset_active = true; this.reset_active = true;
if (need_loading) { if (need_loading) {
this.account_loading = true; this.account_loading = true;
@ -216,13 +216,13 @@ export default {
}.bind(this), }.bind(this),
1000 1000
); );
} }
// //
let user_infos = { let user_infos = {
user_name: 'A Little Canary', user_name: 'A Little Canary',
cid: 'Codebook', cid: 'Codebook',
row_login_pwd: '', row_login_pwd: '',
drivce: this.user_infos.drivce, drivce: need_reset_drvice ? '' : this.user_infos.drivce,
cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown', cloud_drivce: this.settings.is_chinese ? '暂无' : 'unknown',
update_time: new Date().getTime() update_time: new Date().getTime()
}; };
@ -254,7 +254,7 @@ export default {
resetApplication() { resetApplication() {
this.application_loading = true; this.application_loading = true;
this.reset_active = true; this.reset_active = true;
this.resetAccount(false); this.resetAccount(false, true);
this.resetCodebook(false); this.resetCodebook(false);
this.setRowPwd(['', this]); this.setRowPwd(['', this]);
console.log('主密码覆写完成'); console.log('主密码覆写完成');