PMCORE-2515: improve advanced search filters CRUD UI

rebase

fix Cr notes
This commit is contained in:
Rodrigo Quelca
2020-12-10 17:37:02 +00:00
parent bb38e8acd8
commit e19701231f
22 changed files with 1529 additions and 846 deletions

View File

@@ -21,10 +21,18 @@ export default {
mounted() {
this.height = window.innerHeight - this.diffHeight;
this.dataCase = this.$parent.dataCase;
this.path =
window.config.SYS_SERVER +
window.config.SYS_URI +
`cases/open?APP_UID=${this.dataCase.APP_UID}&DEL_INDEX=${this.dataCase.DEL_INDEX}&action=${this.dataCase.ACTION}`;
if(this.dataCase.ACTION =="jump") {
this.path =
window.config.SYS_SERVER +
window.config.SYS_URI +
`cases/open?APP_NUMBER=${this.dataCase.APP_NUMBER}&action=${this.dataCase.ACTION}&actionFromList=${this.dataCase.ACTION_FROM_LIST}`;
} else {
this.path =
window.config.SYS_SERVER +
window.config.SYS_URI +
`cases/open?APP_UID=${this.dataCase.APP_UID}&DEL_INDEX=${this.dataCase.DEL_INDEX}&action=${this.dataCase.ACTION}`;
}
},
data() {
return {
@@ -33,6 +41,7 @@ export default {
diffHeight: 10,
dataCase: null,
path: "",
};
},
methods: {