This commit is contained in:
@@ -23,7 +23,9 @@ export default {
|
||||
icon: "fa-cogs",
|
||||
title: this.$ay.t("AdministrationGlobalSettings"),
|
||||
helpUrl: "form-adm-global-settings",
|
||||
hideSearch: true
|
||||
formData: {
|
||||
ayaType: window.$gz.type.Global
|
||||
}
|
||||
});
|
||||
},
|
||||
created() {
|
||||
|
||||
@@ -15,7 +15,9 @@ export default {
|
||||
icon: "fa-ticket-alt",
|
||||
title: this.$ay.t("HelpLicense"),
|
||||
helpUrl: "form-adm-license",
|
||||
hideSearch: true
|
||||
formData: {
|
||||
ayaType: window.$gz.type.License
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -15,7 +15,9 @@ export default {
|
||||
icon: "fa-chart-line",
|
||||
title: this.$ay.t("Statistics"),
|
||||
helpUrl: "form-adm-statistics",
|
||||
hideSearch: true
|
||||
formData: {
|
||||
ayaType: window.$gz.type.BizMetrics
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
:readonly="formState.readOnly"
|
||||
:label="$ay.t('FormFieldVisible')"
|
||||
:ref="item.key"
|
||||
:disabled="item.stockRequired"
|
||||
:disabled="item.stockRequired || formState.readOnly"
|
||||
@change="visibleChanged(item)"
|
||||
:data-cy="!!$ay.dev ? item.key + 'Visible' : false"
|
||||
></v-checkbox>
|
||||
@@ -27,13 +27,14 @@
|
||||
v-model="item.required"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$ay.t('FormFieldEntryRequired')"
|
||||
:disabled="requiredDisabled(item)"
|
||||
:disabled="requiredDisabled(item) || formState.readOnly"
|
||||
@change="requiredChanged(item)"
|
||||
></v-checkbox>
|
||||
<v-select
|
||||
v-if="item.custom"
|
||||
v-model="item.type"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:items="selectLists.uiFieldDataTypes"
|
||||
item-text="name"
|
||||
item-value="id"
|
||||
|
||||
@@ -15,7 +15,9 @@ export default {
|
||||
icon: "fa-bullhorn",
|
||||
title: this.$ay.t("NotifySubscriptionList"),
|
||||
helpUrl: "form-home-notify-subscriptions",
|
||||
hideSearch: true
|
||||
formData: {
|
||||
ayaType: window.$gz.type.NotificationSubscription
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -256,7 +256,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-key",
|
||||
title: vm.$ay.t("SetLoginPassword"),
|
||||
helpUrl: "form-home-password",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.UserOptions
|
||||
},
|
||||
menuItems: []
|
||||
};
|
||||
|
||||
|
||||
@@ -382,7 +382,6 @@ function generateMenu(vm) {
|
||||
icon: "fa-user-cog",
|
||||
title: vm.$ay.t("UserSettings"),
|
||||
helpUrl: "form-home-user-settings",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.UserOptions
|
||||
},
|
||||
|
||||
@@ -380,7 +380,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-file-archive",
|
||||
title: vm.$ay.t("Backup"),
|
||||
helpUrl: "form-ops-backup",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.Backup
|
||||
},
|
||||
formData: {},
|
||||
menuItems: []
|
||||
};
|
||||
|
||||
@@ -182,7 +182,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-robot",
|
||||
title: vm.$ay.t("ServerJobs"),
|
||||
helpUrl: "form-ops-jobs",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.ServerJob
|
||||
},
|
||||
menuItems: [
|
||||
{
|
||||
title: vm.$ay.t("Copy"),
|
||||
|
||||
@@ -152,7 +152,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-history",
|
||||
title: vm.$ay.t("ServerLog"),
|
||||
helpUrl: "form-ops-log",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.LogFile
|
||||
},
|
||||
menuItems: [
|
||||
{
|
||||
title: vm.$ay.t("Copy"),
|
||||
|
||||
@@ -463,7 +463,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-file-medical-alt",
|
||||
title: vm.$ay.t("ServerMetrics"),
|
||||
helpUrl: "form-ops-metrics",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.ServerMetrics
|
||||
},
|
||||
menuItems: [
|
||||
// {
|
||||
// title: "DEV_TEST_COLLECT",
|
||||
|
||||
@@ -15,7 +15,9 @@ export default {
|
||||
icon: "fa-bullhorn",
|
||||
title: this.$ay.t("NotificationSettings"),
|
||||
helpUrl: "form-ops-notification-settings",
|
||||
hideSearch: true
|
||||
formData: {
|
||||
ayaType: window.$gz.type.NotificationSubscription
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -89,7 +89,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-binoculars",
|
||||
title: vm.$ay.t("ServerProfiler"),
|
||||
helpUrl: "form-ops-profile",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.ServerMetrics
|
||||
},
|
||||
menuItems: [
|
||||
// {
|
||||
// title: vm.$ay.t("Copy"),
|
||||
|
||||
@@ -257,7 +257,9 @@ function generateMenu(vm) {
|
||||
icon: "fa-door-open",
|
||||
title: vm.$ay.t("ServerState"),
|
||||
helpUrl: "form-ops-server-state",
|
||||
hideSearch: true,
|
||||
formData: {
|
||||
ayaType: window.$gz.type.ServerState
|
||||
},
|
||||
formData: {
|
||||
// ayaType: window.$gz.type.UserOptions
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user