update 更新报表设计

This commit is contained in:
lb
2023-03-06 16:53:46 +08:00
parent ff17c94e78
commit aeb016615b
2 changed files with 50 additions and 11 deletions

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: {},
};