fix conflicts

fix

Revert "fix"

This reverts commit 6d21e322081ecd8b89db4d6c07c6c8a82b2549a6.

add advanced-search main

fix header

gif Home

fix missed code

CR notes

CR notes 2

CR notes 5

CR notes 8
This commit is contained in:
Rodrigo Quelca
2020-12-04 20:36:42 +00:00
parent 9e6414a4b2
commit ffda3997d5
18 changed files with 1557 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import axios from "axios";
import headerData from "./../mocks/casesHeader.json";
import startedCasesFaker from "./../mocks/startedCasesFaker.js";
import Api from "./Api.js";
export let cases = {
@@ -32,6 +33,14 @@ export let cases = {
return axios.post(window.config.SYS_SERVER +
window.config.SYS_URI +
`cases/casesStartPage_Ajax.php`, params);
},
//remove this section
search(data) {
return new Promise((resolutionFunc, rejectionFunc) => {
resolutionFunc(startedCasesFaker);
});
}
};