PMCORE-2510
This commit is contained in:
@@ -24,6 +24,7 @@ import CustomSidebar from "./../components/menu/CustomSidebar";
|
|||||||
import MyCases from "./MyCases";
|
import MyCases from "./MyCases";
|
||||||
import MyDocuments from "./MyDocuments";
|
import MyDocuments from "./MyDocuments";
|
||||||
import BatchRouting from "./BatchRouting";
|
import BatchRouting from "./BatchRouting";
|
||||||
|
import TaskReassignments from "./TaskReassignments";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Home",
|
name: "Home",
|
||||||
@@ -32,6 +33,7 @@ export default {
|
|||||||
MyCases,
|
MyCases,
|
||||||
MyDocuments,
|
MyDocuments,
|
||||||
BatchRouting,
|
BatchRouting,
|
||||||
|
TaskReassignments,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
44
resources/assets/js/home/TaskReassignments.vue
Normal file
44
resources/assets/js/home/TaskReassignments.vue
Normal 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>
|
||||||
@@ -77,7 +77,8 @@
|
|||||||
{
|
{
|
||||||
"href": "/task-Reassignments",
|
"href": "/task-Reassignments",
|
||||||
"title": "Task Reassignments",
|
"title": "Task Reassignments",
|
||||||
"icon": "fas fa-arrows-alt"
|
"icon": "fas fa-arrows-alt",
|
||||||
|
"id": "task-reassignments"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"href": "/page",
|
"href": "/page",
|
||||||
|
|||||||
Reference in New Issue
Block a user