This commit is contained in:
@@ -33,7 +33,7 @@
|
|||||||
</v-layout>
|
</v-layout>
|
||||||
</v-container>
|
</v-container>
|
||||||
</v-content>
|
</v-content>
|
||||||
<v-footer >
|
<!-- <v-footer >
|
||||||
<v-layout>
|
<v-layout>
|
||||||
<v-flex primary
|
<v-flex primary
|
||||||
|
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</v-footer>
|
</v-footer> -->
|
||||||
|
|
||||||
<!-- <v-footer app color="primary" dark height="auto">
|
<!-- <v-footer app color="primary" dark height="auto">
|
||||||
<v-layout row wrap="" align-center>
|
<v-layout row wrap="" align-center>
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-container fluid>
|
<v-container fluid>
|
||||||
<v-layout row wrap="">
|
<v-layout row wrap>
|
||||||
<v-flex xs12 class="hidden-sm-and-down text-xs-center" mt-5 ml-5 pl-5>
|
<v-flex xs12 class="hidden-sm-and-down text-xs-center" mt-5 ml-5 pl-5>
|
||||||
<v-img :src="require('../assets/logo.svg')" class="my-3" contain height="200"></v-img>
|
<v-img :src="require('../assets/logo.svg')" class="my-3" contain height="200"></v-img>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
<v-flex xs12 class="hidden-md-and-up text-xs-center">
|
<v-flex xs12 class="hidden-md-and-up text-xs-center">
|
||||||
<v-img :src="require('../assets/logo.svg')" contain height="64"></v-img>
|
<v-img :src="require('../assets/logo.svg')" contain height="64"></v-img>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
<v-flex xs12 sm6 offset-sm3 mt-3>
|
<v-flex xs12 sm6 offset-sm3 mt-3>
|
||||||
@@ -38,12 +38,24 @@
|
|||||||
</form>
|
</form>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
|
<v-footer>
|
||||||
|
<v-layout>
|
||||||
|
<v-flex primary py-2 text-xs-center white--text xs12>
|
||||||
|
<div>
|
||||||
|
<a href="https://ayanova.com" target="_blank">
|
||||||
|
<span class="white--text caption">AyaNova ({{version}}) {{copyright}}</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</v-flex>
|
||||||
|
</v-layout>
|
||||||
|
</v-footer>
|
||||||
</v-container>
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
/* xeslint-disable */
|
/* xeslint-disable */
|
||||||
import auth from "../api/auth";
|
import auth from "../api/auth";
|
||||||
|
import aboutInfo from "../api/aboutinfo";
|
||||||
export default {
|
export default {
|
||||||
name: "Login",
|
name: "Login",
|
||||||
data() {
|
data() {
|
||||||
@@ -70,6 +82,14 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
copyright() {
|
||||||
|
return aboutInfo.copyright;
|
||||||
|
},
|
||||||
|
version() {
|
||||||
|
return aboutInfo.version;
|
||||||
|
}
|
||||||
|
},
|
||||||
beforeRouteEnter(to, from, next) {
|
beforeRouteEnter(to, from, next) {
|
||||||
next(() => {
|
next(() => {
|
||||||
auth.logout();
|
auth.logout();
|
||||||
|
|||||||
Reference in New Issue
Block a user