This commit is contained in:
@@ -50,6 +50,8 @@ TODO CLIENT STUFF
|
||||
- https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494
|
||||
- UI:GENERAL:LAYOUT: - All layout, not just workorder needs to be modular and optional sections with simple starting view.
|
||||
|
||||
- Calendar form using new vuetify calendar control
|
||||
|
||||
- MISC
|
||||
- Search area seems to take up too much space
|
||||
|
||||
|
||||
@@ -57,12 +57,24 @@
|
||||
</div>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-footer> -->
|
||||
</v-footer>
|
||||
-->
|
||||
<v-footer v-if="!isAuthenticated">
|
||||
<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-app>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
//import aboutInfo from "./api/aboutinfo";
|
||||
import aboutInfo from "./api/aboutinfo";
|
||||
|
||||
export default {
|
||||
name: "App",
|
||||
@@ -94,12 +106,12 @@ export default {
|
||||
navItems() {
|
||||
return this.$store.state.navItems;
|
||||
},
|
||||
// copyright() {
|
||||
// return aboutInfo.copyright;
|
||||
// },
|
||||
// version() {
|
||||
// return aboutInfo.version;
|
||||
// },
|
||||
copyright() {
|
||||
return aboutInfo.copyright;
|
||||
},
|
||||
version() {
|
||||
return aboutInfo.version;
|
||||
},
|
||||
helpUrl() {
|
||||
return this.$store.state.helpUrl;
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
</form>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-footer>
|
||||
<!-- <v-footer>
|
||||
<v-layout>
|
||||
<v-flex primary py-2 text-xs-center white--text xs12>
|
||||
<div>
|
||||
@@ -48,14 +48,14 @@
|
||||
</div>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-footer>
|
||||
</v-footer> -->
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
/* xeslint-disable */
|
||||
import auth from "../api/auth";
|
||||
import aboutInfo from "../api/aboutinfo";
|
||||
// import aboutInfo from "../api/aboutinfo";
|
||||
export default {
|
||||
name: "Login",
|
||||
data() {
|
||||
@@ -83,12 +83,12 @@ export default {
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
copyright() {
|
||||
return aboutInfo.copyright;
|
||||
},
|
||||
version() {
|
||||
return aboutInfo.version;
|
||||
}
|
||||
// copyright() {
|
||||
// return aboutInfo.copyright;
|
||||
// },
|
||||
// version() {
|
||||
// return aboutInfo.version;
|
||||
// }
|
||||
},
|
||||
beforeRouteEnter(to, from, next) {
|
||||
next(() => {
|
||||
|
||||
Reference in New Issue
Block a user