PMCORE-2510

This commit is contained in:
Henry Jordan
2020-12-03 15:23:23 +00:00
parent cb88c726ba
commit dc3678a4e2
3 changed files with 48 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ import CustomSidebar from "./../components/menu/CustomSidebar";
import MyCases from "./MyCases";
import MyDocuments from "./MyDocuments";
import BatchRouting from "./BatchRouting";
import TaskReassignments from "./TaskReassignments";
export default {
name: "Home",
@@ -32,6 +33,7 @@ export default {
MyCases,
MyDocuments,
BatchRouting,
TaskReassignments,
},
data() {
return {

View File

@@ -0,0 +1,44 @@
<template>
<div>
<iframe
:width="width"
ref="xIFrame"
frameborder="0"
:src="path"
:height="height"
allowfullscreen
></iframe>
</div>
</template>
<script>
export default {
name: "TaskReassignments",
components: {},
props: {
data: Object,
},
mounted() {
this.height = window.innerHeight - this.diffHeight;
},
data() {
return {
height: "100%",
width: "100%",
diffHeight: 10,
path:
window.config.SYS_SERVER +
window.config.SYS_URI +
"cases/casesListExtJs?action=to_reassign",
};
},
methods: {
classBtn(cls) {
return "btn v-btn-request " + cls;
},
},
};
</script>
<style>
</style>

View File

@@ -77,7 +77,8 @@
{
"href": "/task-Reassignments",
"title": "Task Reassignments",
"icon": "fas fa-arrows-alt"
"icon": "fas fa-arrows-alt",
"id": "task-reassignments"
},
{
"href": "/page",