Merged in bugfix/PMCORE-3956 (pull request #8549)
PMCORE-3956 Approved-by: Rodrigo Quelca
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
565cddb326
@@ -12,8 +12,8 @@
|
|||||||
ref="table"
|
ref="table"
|
||||||
>
|
>
|
||||||
<div slot="actions" slot-scope="props">
|
<div slot="actions" slot-scope="props">
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis v-if="dataEllipsis" :data="dataEllipsis"> </ellipsis>
|
<ellipsis v-if="dataEllipsis" :data="dataEllipsis" :ref="'ellipsis' + props.row.APP_UID"> </ellipsis>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div slot="owner" slot-scope="props">
|
<div slot="owner" slot-scope="props">
|
||||||
@@ -279,7 +279,6 @@ export default {
|
|||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data) {
|
||||||
let that = this;
|
let that = this;
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = {
|
this.dataEllipsis = {
|
||||||
buttons: {
|
buttons: {
|
||||||
note: {
|
note: {
|
||||||
@@ -314,7 +313,17 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.showEllipsis) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
importCustomCaseList() {
|
importCustomCaseList() {
|
||||||
this.$refs["modal-import"].show();
|
this.$refs["modal-import"].show();
|
||||||
@@ -323,6 +332,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.float-right {
|
.float-right {
|
||||||
padding-left: 1.5%;
|
padding-left: 1.5%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
<div
|
||||||
|
class="ellipsis-button align-middle"
|
||||||
|
v-show="!showActions"
|
||||||
|
@mouseover="showActionButtons"
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
<i class="fas fa-ellipsis-v"></i>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<div class="float-right" v-show="showActions">
|
<div class="float-right" v-show="showActions">
|
||||||
<transition name="fade">
|
<transition name="fade">
|
||||||
<div
|
<div
|
||||||
@@ -21,15 +30,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
class="ellipsis-button align-middle"
|
|
||||||
v-show="!showActions"
|
|
||||||
@mouseover="showActionButtons"
|
|
||||||
>
|
|
||||||
<span>
|
|
||||||
<i class="fas fa-ellipsis-v"></i>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -124,6 +124,7 @@ export default {
|
|||||||
z-index: 999;
|
z-index: 999;
|
||||||
display: inline-flex !important;
|
display: inline-flex !important;
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
|
height: 50px !important;
|
||||||
}
|
}
|
||||||
.btn-outline-info {
|
.btn-outline-info {
|
||||||
border: none;
|
border: none;
|
||||||
|
|||||||
@@ -662,6 +662,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.VuePagination__count {
|
.VuePagination__count {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -128,10 +128,11 @@
|
|||||||
slot="actions"
|
slot="actions"
|
||||||
slot-scope="props"
|
slot-scope="props"
|
||||||
>
|
>
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row, view = true)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis
|
<ellipsis
|
||||||
v-if="dataEllipsis"
|
v-if="dataEllipsis"
|
||||||
:data="dataEllipsis"
|
:data="dataEllipsis"
|
||||||
|
:ref="'ellipsis' + props.row.APP_UID"
|
||||||
>
|
>
|
||||||
</ellipsis>
|
</ellipsis>
|
||||||
</div>
|
</div>
|
||||||
@@ -1151,10 +1152,18 @@ export default {
|
|||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {objec} data
|
* @param {objec} data
|
||||||
*/
|
*/
|
||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data, view = false) {
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = this.ellipsisItemFactory(data, this.data.pageParent);
|
this.dataEllipsis = this.ellipsisItemFactory(data, this.data.pageParent);
|
||||||
|
if (this.showEllipsis && view) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@@ -1334,6 +1343,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-todo {
|
.v-container-todo {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|||||||
@@ -96,8 +96,8 @@
|
|||||||
slot="actions"
|
slot="actions"
|
||||||
slot-scope="props"
|
slot-scope="props"
|
||||||
>
|
>
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row, view = true)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis v-if="dataEllipsis" :data="dataEllipsis"> </ellipsis>
|
<ellipsis v-if="dataEllipsis" :data="dataEllipsis" :ref="'ellipsis' + props.row.APP_UID"> </ellipsis>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</v-server-table>
|
</v-server-table>
|
||||||
@@ -806,10 +806,9 @@ export default {
|
|||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {object} data
|
* @param {object} data
|
||||||
*/
|
*/
|
||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data, view = false) {
|
||||||
let that = this;
|
let that = this;
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = {
|
this.dataEllipsis = {
|
||||||
buttons: {
|
buttons: {
|
||||||
open: {
|
open: {
|
||||||
@@ -828,6 +827,15 @@ export default {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.showEllipsis && view) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@@ -884,6 +892,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-draft {
|
.v-container-draft {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|||||||
@@ -119,8 +119,8 @@
|
|||||||
slot="actions"
|
slot="actions"
|
||||||
slot-scope="props"
|
slot-scope="props"
|
||||||
>
|
>
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row, view = true)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis v-if="dataEllipsis" :data="dataEllipsis"> </ellipsis>
|
<ellipsis v-if="dataEllipsis" :data="dataEllipsis" :ref="'ellipsis' + props.row.APP_UID"> </ellipsis>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</v-server-table>
|
</v-server-table>
|
||||||
@@ -932,10 +932,9 @@ export default {
|
|||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {objec} data
|
* @param {objec} data
|
||||||
*/
|
*/
|
||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data, view = false) {
|
||||||
let that = this;
|
let that = this;
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = {
|
this.dataEllipsis = {
|
||||||
buttons: {
|
buttons: {
|
||||||
open: {
|
open: {
|
||||||
@@ -968,6 +967,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.showEllipsis && view) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@@ -1024,6 +1032,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-todo {
|
.v-container-todo {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|||||||
@@ -796,15 +796,13 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-mycases {
|
.v-container-mycases {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
padding-left: 50px;
|
padding-left: 50px;
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
}
|
}
|
||||||
/*.btn-clear-sort {
|
|
||||||
position: fixed;
|
|
||||||
margin-top: 16px;
|
|
||||||
margin-left: -11px;
|
|
||||||
}*/
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -118,8 +118,8 @@
|
|||||||
slot="actions"
|
slot="actions"
|
||||||
slot-scope="props"
|
slot-scope="props"
|
||||||
>
|
>
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row, view = true)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis v-if="dataEllipsis" :data="dataEllipsis"> </ellipsis>
|
<ellipsis v-if="dataEllipsis" :data="dataEllipsis" :ref="'ellipsis' + props.row.APP_UID"> </ellipsis>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</v-server-table>
|
</v-server-table>
|
||||||
@@ -888,10 +888,9 @@ export default {
|
|||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {object} data
|
* @param {object} data
|
||||||
*/
|
*/
|
||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data, view = false) {
|
||||||
let that = this;
|
let that = this;
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = {
|
this.dataEllipsis = {
|
||||||
buttons: {
|
buttons: {
|
||||||
note: {
|
note: {
|
||||||
@@ -917,6 +916,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.showEllipsis && view) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@@ -973,6 +981,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-paused {
|
.v-container-paused {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|||||||
@@ -107,8 +107,8 @@
|
|||||||
slot="actions"
|
slot="actions"
|
||||||
slot-scope="props"
|
slot-scope="props"
|
||||||
>
|
>
|
||||||
<div @mouseover="updateDataEllipsis(props.row)">
|
<div @mouseenter="updateDataEllipsis(props.row, view = true)" @mouseleave="showEllipsis = false">
|
||||||
<ellipsis v-if="dataEllipsis" :data="dataEllipsis"> </ellipsis>
|
<ellipsis v-if="dataEllipsis" :data="dataEllipsis" :ref="'ellipsis' + props.row.APP_UID"> </ellipsis>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</v-server-table>
|
</v-server-table>
|
||||||
@@ -879,10 +879,9 @@ export default {
|
|||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {object} data
|
* @param {object} data
|
||||||
*/
|
*/
|
||||||
updateDataEllipsis(data) {
|
updateDataEllipsis(data, view = false) {
|
||||||
let that = this;
|
let that = this;
|
||||||
this.showEllipsis = !this.showEllipsis;
|
this.showEllipsis = !this.showEllipsis;
|
||||||
if (this.showEllipsis) {
|
|
||||||
this.dataEllipsis = {
|
this.dataEllipsis = {
|
||||||
buttons: {
|
buttons: {
|
||||||
note: {
|
note: {
|
||||||
@@ -901,6 +900,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.showEllipsis && view) {
|
||||||
|
for (let ellipsis in this.$refs) {
|
||||||
|
if (!ellipsis.indexOf('ellipsis')) {
|
||||||
|
if (ellipsis !== 'ellipsis' + data.APP_UID) {
|
||||||
|
this.$refs[ellipsis].hideActionButtons();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.showEllipsis = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@@ -957,6 +965,9 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
.VueTables__row {
|
||||||
|
height: 75px;
|
||||||
|
}
|
||||||
.v-container-unassigned {
|
.v-container-unassigned {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|||||||
Reference in New Issue
Block a user