This commit is contained in:
@@ -73,10 +73,10 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
input: {
|
||||
// username: "manager",
|
||||
// password: "l3tm3in"
|
||||
username: "CustomerLimited",
|
||||
password: "CustomerLimited"
|
||||
username: "manager",
|
||||
password: "l3tm3in"
|
||||
// username: "CustomerLimited",
|
||||
// password: "CustomerLimited"
|
||||
},
|
||||
errorBadCreds: false,
|
||||
reveal: false,
|
||||
|
||||
31
ayanova/src/views/ops-server-state.vue
Normal file
31
ayanova/src/views/ops-server-state.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
/**
|
||||
*
|
||||
*
|
||||
* <div>
|
||||
MRU + depending on role: new workorder, new client, personal workorder
|
||||
list if scheduleable, or if ops then whatever ops needs or admin whatever
|
||||
they need etc
|
||||
</div>
|
||||
*
|
||||
*
|
||||
*/
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "fa-tachometer-alt",
|
||||
title: this.$ay.t("Home"),
|
||||
helpUrl: "form-home-dashboard"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user