optimization unlock logic

This commit is contained in:
RainSun 2020-02-20 18:47:07 +08:00
parent a360aa88dc
commit c2e5a50553
2 changed files with 19 additions and 11 deletions

View File

@ -127,7 +127,7 @@ export default {
if (Object.keys(this.row_pwd).length != 0) {
//
let now = new Date().getTime();
if (now - this.row_pwd.create_time < 1000 * 60 * 5) {
if (now - this.row_pwd.create_time < 1000) {
//
this.unlock = true;
//
@ -199,7 +199,7 @@ export default {
// this.setRowPwd([row_pwd, this]);
// console.log('init');
// this.init();
if(type == '密码超时') this.$router.push({ name: "Unlock", params: { msg: 'Password validity period has expired, please re-enter' } })
if(type == '密码超时') this.$router.push({ name: "Unlock", params: { msg: 'Password validity period has expired, please re-enter.' } })
else this.$router.push('/unlock')
},

View File

@ -3,19 +3,25 @@
<md-toolbar class="md-primary">
<h3 class="md-title" style="flex: 1">{{ is_create ? 'Create Password' : 'Unlock' }}</h3>
</md-toolbar>
<icon class="logo" name="canary"></icon>
<p class="md-title center">{{ is_create ? 'Create New Password' : 'Unlock Canary Codebook' }}</p>
<md-field class="input-box" :class="messageClass">
<label>{{ is_create ? 'New Password' : 'Unlock Password' }}</label>
<md-input v-model="pwd" type="password"></md-input>
<span class="md-error">{{ err_msg }}</span>
</md-field>
<md-field class="input-box" :class="messageClass" v-if="is_create">
<label>Repeat Password</label>
<md-input v-model="repeat" type="password"></md-input>
<span class="md-error">{{ err_msg }}</span>
</md-field>
<md-button class="md-raised md-primary center" @click="judgePwd()">Enter</md-button>
<md-dialog-confirm
:md-active.sync="show_dialog"
md-title="Confirm you new password?"
@ -25,6 +31,7 @@
@md-cancel="onCancel"
@md-confirm="submit"
/>
<md-snackbar md-position="center" :md-active.sync="show_snackbar" md-persistent>
<span>{{ snakebar_msg }}</span>
</md-snackbar>
@ -47,7 +54,7 @@ export default {
show_dialog: false,
is_create: false,
show_snackbar: false,
snakebar_msg:''
snakebar_msg: ''
};
},
computed: {
@ -67,12 +74,6 @@ export default {
this.$store.replaceState(Object.assign(this.$store.state, JSON.parse(localStorage.getItem('storeState'))));
//
this.is_create = this.row_data ? false : true;
// SnakeBar
if (this.$route.params.msg) {
//
this.snakebar_msg = this.$route.params.msg
this.show_snackbar = true
}
},
//
@ -85,7 +86,7 @@ export default {
return;
}
//
if (this.row_data) {
if (!this.is_create) {
//
let test_decode = decrypt(this.pwd, this.row_data);
//
@ -132,7 +133,14 @@ export default {
created() {
this.init();
},
mounted() {},
mounted() {
// SnakeBar
if (this.$route.params.msg) {
//
this.snakebar_msg = this.$route.params.msg;
this.show_snackbar = true;
}
},
watch: {
// `pwd`
pwd: function() {