This commit is contained in:
Henry Jordan
2021-01-21 19:24:52 +00:00
parent 47f59baadb
commit 58536e3ce2
6 changed files with 290 additions and 545 deletions

View File

@@ -84,10 +84,10 @@ export let cases = {
return axios.post(window.config.SYS_SERVER +
window.config.SYS_URI +
`appProxy/getSummary`, params, {
headers: {
'Cache-Control': 'no-cache'
}
});
headers: {
'Cache-Control': 'no-cache'
}
});
},
casenotes(data) {
var params = new FormData();
@@ -187,6 +187,19 @@ export let cases = {
paged: dt.paged
})
},
/**
* Make a search request to the Api service
* @param {object} dt - filter parameters
*/
debugStatus(dt) {
return Api.get({
service: "DEBUG_STATUS",
params: {},
keys: {
prj_uid: dt.PRO_UID
},
})
},
debugVars(data) {
var params;
if (data.filter === "all") {