Files
raven-client/ayanova/src/views/ay-report.vue
2020-04-07 18:20:37 +00:00

20 lines
356 B
Vue

<template>
<gz-report-viewer
:reportId="$route.params.recordid"
:ayaType="$route.params.ayatype"
/>
</template>
<script>
export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-file-alt",
title: this.$ay.t("Report"),
helpUrl: "form-ay-report"
});
}
};
</script>