PMCORE-4027[28891-29654] Case history and case data showing previous case information

Corrections

add overlay

CR
This commit is contained in:
Fabio Guachalla
2022-12-21 11:10:01 -04:00
parent ab9e8d9bc0
commit 990f704f65
8 changed files with 24 additions and 19 deletions

View File

@@ -5,7 +5,7 @@
ref="IFrameCaseHistory"
title="IFrameCaseHistory"
frameborder="0"
:src="path"
:src="url"
:height="height"
allowfullscreen
></iframe>
@@ -16,25 +16,22 @@
export default {
name: "CaseHistory",
props: {
data: Object,
historyData: Object,
},
data() {
return {
url: "",
height: "500px",
width: "100%",
diffHeight: 10,
};
},
computed: {
path() {
let url =
window.config.SYS_SERVER_AJAX +
window.config.SYS_URI +
`cases/ajaxListener?action=caseHistory`;
return url;
},
computed: {},
mounted() {
this.url = window.config.SYS_SERVER_AJAX +
window.config.SYS_URI +
`cases/ajaxListener?action=caseHistory&appUid=` + this.data.APP_UID;
},
mounted() {},
methods: {
classBtn(cls) {
return "btn v-btn-request " + cls;