Files
raven-client/ayanova/src/views/ay-report.vue
2020-06-30 21:22:11 +00:00

20 lines
344 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: "Report",
helpUrl: "form-ay-report"
});
}
};
</script>