This commit is contained in:
@@ -50,6 +50,8 @@ TODO CLIENT STUFF
|
|||||||
- https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494
|
- 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.
|
- 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
|
- MISC
|
||||||
- Search area seems to take up too much space
|
- Search area seems to take up too much space
|
||||||
|
|
||||||
|
|||||||
@@ -57,12 +57,24 @@
|
|||||||
</div>
|
</div>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</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>
|
</v-app>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
//import aboutInfo from "./api/aboutinfo";
|
import aboutInfo from "./api/aboutinfo";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "App",
|
name: "App",
|
||||||
@@ -94,12 +106,12 @@ export default {
|
|||||||
navItems() {
|
navItems() {
|
||||||
return this.$store.state.navItems;
|
return this.$store.state.navItems;
|
||||||
},
|
},
|
||||||
// copyright() {
|
copyright() {
|
||||||
// return aboutInfo.copyright;
|
return aboutInfo.copyright;
|
||||||
// },
|
},
|
||||||
// version() {
|
version() {
|
||||||
// return aboutInfo.version;
|
return aboutInfo.version;
|
||||||
// },
|
},
|
||||||
helpUrl() {
|
helpUrl() {
|
||||||
return this.$store.state.helpUrl;
|
return this.$store.state.helpUrl;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
</form>
|
</form>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
<v-footer>
|
<!-- <v-footer>
|
||||||
<v-layout>
|
<v-layout>
|
||||||
<v-flex primary py-2 text-xs-center white--text xs12>
|
<v-flex primary py-2 text-xs-center white--text xs12>
|
||||||
<div>
|
<div>
|
||||||
@@ -48,14 +48,14 @@
|
|||||||
</div>
|
</div>
|
||||||
</v-flex>
|
</v-flex>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</v-footer>
|
</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";
|
// import aboutInfo from "../api/aboutinfo";
|
||||||
export default {
|
export default {
|
||||||
name: "Login",
|
name: "Login",
|
||||||
data() {
|
data() {
|
||||||
@@ -83,12 +83,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
copyright() {
|
// copyright() {
|
||||||
return aboutInfo.copyright;
|
// return aboutInfo.copyright;
|
||||||
},
|
// },
|
||||||
version() {
|
// version() {
|
||||||
return aboutInfo.version;
|
// return aboutInfo.version;
|
||||||
}
|
// }
|
||||||
},
|
},
|
||||||
beforeRouteEnter(to, from, next) {
|
beforeRouteEnter(to, from, next) {
|
||||||
next(() => {
|
next(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user