PMCORE-3090:UI - Task Actions (EHX) - Inbox List (and any Custom Case List that belongs to this list)

Corrections

CR

Conection to api

modals with rest service

CR
This commit is contained in:
fabio
2021-07-20 11:50:16 -04:00
parent a0b9605d92
commit ac4814d28d
13 changed files with 499 additions and 30 deletions

View File

@@ -486,7 +486,8 @@ export default {
}
},
/**
* Show options in the ellipsis
* Show options in the ellipsis
* @param {object} data
*/
updateDataEllipsis(data) {
let that = this;
@@ -497,12 +498,16 @@ export default {
open: {
name: "open",
icon: "far fa-edit",
fn: function() {console.log(data.APP_UID);}
fn: function() {
that.openCase(data);
}
},
note: {
name: "case note",
icon: "far fa-comments",
fn: function() {console.log("comments");}
fn: function() {
that.openCaseDetail(data);
}
},
}
}