Browse Source

update 更新报表设计

docs_0727
lb 1 year ago
parent
commit
aeb016615b
2 changed files with 50 additions and 11 deletions
  1. +37
    -5
      src/views/modules/pms/reportDesign/index.vue
  2. +13
    -6
      src/views/modules/pms/reportPreview/index.vue

+ 37
- 5
src/views/modules/pms/reportDesign/index.vue View File

@@ -1,5 +1,7 @@
<template>
<div>design</div>
<div v-loading="loading" style="" class="main-container">
<iframe ref="report-view" id="report-view" name="main-iframe" :src="url" frameborder="0" scrolling="auto" />
</div>
</template>

<script>
@@ -7,12 +9,42 @@ export default {
name: "ReportDesign",
props: {},
data() {
return {};
return {
loading: true,
url: "",
// url: "/pms-am/ureport/preview", // 不行
// url: "http://192.168.1.62:8080/pms-am/ureport/preview", // 可以,但不通用
// url: window.SITE_CONFIG["apiURL"] + "/ureport/designer",
};
},
beforeRouteEnter(to, from, next) {
next((vm) => {
vm.loading = true;
vm.url = window.SITE_CONFIG["apiURL"] + "/ureport/designer?_u=db:" + to.query.name; // + ".ureport.xml";
});
},
mounted() {
const iframe = this.$refs["report-view"];
iframe.onload = () => {
this.loading = false;
};
},
created() {},
mounted() {},
methods: {},
};
</script>

<style scoped></style>
<style scoped>
.main-container {
min-height: inherit;
/* padding: 16px; */
background: white;
/* border-radius: 6px; */
/* box-shadow: 0 0 1.125px 0.125px rgba(0, 0, 0, 0.125); */
/* height: 100%; */
}

#report-view {
width: 100%;
min-height: inherit;
}
</style>

+ 13
- 6
src/views/modules/pms/reportPreview/index.vue View File

@@ -11,14 +11,20 @@ export default {
data() {
return {
loading: true,
url: "",
// url: "/pms-am/ureport/preview", // 不行
// url: "http://192.168.1.62:8080/pms-am/ureport/preview",
url: window.SITE_CONFIG['apiURL'] + '/ureport/preview'
// url: window.SITE_CONFIG['apiURL'] + '/ureport/preview'
};
},
created() {},
beforeRouteEnter(to, from, next) {
next((vm) => {
vm.loading = true;
vm.url = window.SITE_CONFIG["apiURL"] + "/ureport/preview?_u=db:" + to.query.name; // + ".ureport.xml";
});
},

mounted() {
this.url += "?_u=db:" + this.$route.query.name // + ".ureport.xml";
if (this.$route.query.substrateId) {
this.url += "&substrateId=" + this.$route.query.substrateId;
}
@@ -34,9 +40,10 @@ export default {
if (this.$route.query.id) {
this.url += "&id=" + this.$route.query.id;
}
const iframe = this.$refs['report-view']
console.log('iframe', iframe)
iframe.onload = () => this.loading = false
const iframe = this.$refs["report-view"];
iframe.onload = () => {
this.loading = false;
};
},
methods: {},
};


Loading…
Cancel
Save