add unload clear main pwd

This commit is contained in:
RainSun 2020-02-26 10:57:30 +08:00
parent f2f879d16d
commit 496fda0686
3 changed files with 41 additions and 10 deletions

View File

@ -5,11 +5,41 @@
</div>
</template>
<script>
import { mapActions } from 'vuex';
export default {
name: 'App',
mounted() {
window.addEventListener('beforeunload', e => this.beforeunloadHandler(e))
window.addEventListener('unload', e => this.unloadHandler(e))
},
destroyed() {
window.removeEventListener('beforeunload', e => this.beforeunloadHandler(e))
window.removeEventListener('unload', e => this.unloadHandler(e))
},
methods: {
...mapActions(['setRowPwd']),
beforeunloadHandler(){
this._beforeUnload_time=new Date().getTime();
},
unloadHandler(e){
this._gap_time=new Date().getTime()-this._beforeUnload_time;
//
if(this._gap_time<=5){
// debugger
console.log('退出程序清除主密码')
this.setRowPwd(['', this]);
// debugger
}
}
}
};
</script>
<style lang="scss">
@import './style/main';
@import './style/font';
@import "~vue-material/dist/theme/engine";
@import "~vue-material/dist/theme/all";
@import '~vue-material/dist/theme/engine';
@import '~vue-material/dist/theme/all';
body,
h1,
h2,
@ -109,14 +139,14 @@ button {
border: none;
outline: none;
}
html[data-theme="dark"] {
html[data-theme='dark'] {
@include set-theme-dark();
@import '~vue-material/dist/theme/all';
.md-caption {
color: rgba(255, 255, 255, 0.7);
}
}
html[data-theme="light"] {
html[data-theme='light'] {
@include set-theme-light();
@import '~vue-material/dist/theme/all';
}
@ -149,8 +179,8 @@ html[data-theme="light"] {
}
@media screen and (max-width: 500px) {
.md-autocomplete-box-content {
left: .2rem !important;
}
.md-autocomplete-box-content {
left: 0.2rem !important;
}
}
</style>

View File

@ -1,8 +1,8 @@
import axios from 'axios'
export const api = axios.create({
// baseURL: 'https://ccb.canary.moe/api/',
baseURL: window.location.origin + '/api/',
baseURL: 'https://ccb.canary.moe/api/',
// baseURL: window.location.origin + '/api/',
// baseURL: 'http://152.136.99.231:8001' + '/api/',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',

View File

@ -83,8 +83,9 @@
</div>
<md-speed-dial class="md-bottom-right" v-if="show_list.length != 0 || search_start">
<md-speed-dial-target class="md-primary" @click="turnToAdd()"><md-icon>add</md-icon></md-speed-dial-target>
<md-speed-dial-target class="md-primary" @click="turnToAdd()"><md-icon>add</md-icon></md-speed-dial-target>
</md-speed-dial>
<md-snackbar md-position="center" :md-active.sync="show_snackbar" md-persistent>
<span>{{ snakebar_msg }}</span>
</md-snackbar>