Files
luos/resources/assets/js/home/MyDocuments.vue

46 lines
743 B
Vue
Raw Permalink Normal View History

2020-12-02 21:28:16 +00:00
<template>
<div>
<iframe
:width="width"
2020-12-03 12:39:57 +00:00
ref="xIFrame"
title="xIFrame"
2020-12-02 21:28:16 +00:00
frameborder="0"
:src="path"
:height="height"
allowfullscreen
></iframe>
</div>
</template>
<script>
export default {
name: "MyDocuments",
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 +
2020-12-02 21:28:16 +00:00
window.config.SYS_URI +
"cases/casesStartPage?action=documents",
};
},
methods: {
classBtn(cls) {
return "btn v-btn-request " + cls;
},
},
};
</script>
<style>
</style>