PMCORE-3170

This commit is contained in:
Henry Jordan
2021-07-21 15:09:39 +00:00
parent 036ed650bc
commit b7ef3d6fcc
10 changed files with 70 additions and 61 deletions

View File

@@ -32,8 +32,11 @@ export default {
},
],
},
optionsVueCardView: {
optionsVueView: {
limit: 10,
dblClick:(event, item, options)=>{
this.openCase(item);
},
headings: {
detail: "",
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
@@ -56,10 +59,10 @@ export default {
"task"
],
requestFunction(data) {
return that.getCasesVueList(data);
return that.getCases(data);
},
requestFunctionViewMore(data) {
return that.getCasesVueListViewMore(data);
return that.getCasesViewMore(data);
}
}
}
@@ -71,7 +74,7 @@ export default {
/**
* Get cases for Vue Card View
*/
getCasesVueList(data) {
getCases(data) {
let that = this,
dt,
start = 0,
@@ -104,7 +107,7 @@ export default {
/**
* Get cases for Vue Card View
*/
getCasesVueListViewMore(data) {
getCasesViewMore(data) {
let that = this,
dt,
paged,