PMCORE-2535
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<template>
|
||||
<div class="card v-case-history">
|
||||
<iframe
|
||||
:width="width"
|
||||
ref="IFrameCaseHistory"
|
||||
frameborder="0"
|
||||
:src="path"
|
||||
:height="height"
|
||||
allowfullscreen
|
||||
></iframe>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "CaseHistory",
|
||||
props: {
|
||||
data: Object,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
height: "500px",
|
||||
width: "100%",
|
||||
diffHeight: 10,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
path() {
|
||||
let url =
|
||||
window.config.SYS_SERVER +
|
||||
window.config.SYS_URI +
|
||||
`cases/ajaxListener?action=caseHistory`;
|
||||
return url;
|
||||
},
|
||||
},
|
||||
mounted() {},
|
||||
methods: {
|
||||
classBtn(cls) {
|
||||
return "btn v-btn-request " + cls;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.v-case-history {
|
||||
font-size: 13px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user