Files
luos/resources/assets/js/home/BatchRouting.vue
Fabio Guachalla 6130065eac ADA
ada

ada2

Filters

Corrections labels

Document
2022-11-08 10:32:28 -04:00

46 lines
759 B
Vue

<template>
<div>
<iframe
:width="width"
ref="xIFrame"
title="xIFrame"
frameborder="0"
:src="path"
:height="height"
allowfullscreen
></iframe>
</div>
</template>
<script>
export default {
name: "BatchRouting",
components: {},
props: {
data: Object,
},
mounted() {
this.height = window.innerHeight - this.diffHeight;
},
data() {
return {
height: "100%",
width: "100%",
diffHeight: 10,
path:
window.config.SYS_SERVER_AJAX +
window.config.SYS_URI +
"cases/casesConsolidatedListExtJs?action=consolidated",
};
},
methods: {
classBtn(cls) {
return "btn v-btn-request " + cls;
},
},
};
</script>
<style>
</style>