step 1 : download 10.9.9.2 one-process-resultentry-v106

This commit is contained in:
sindhu
2024-02-19 10:06:06 +07:00
parent f78498b779
commit 1ab1a8e6f1
98 changed files with 17776 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
const URL = "/one-api/mockup/process/resultentry-v106/";
export async function search(token, qry, c_token) {
try {
var resp = await axios.post(URL + 'company/search', {
token: token,
qry: qry
},{ cancelToken : c_token });
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
};
}
let data = resp.data.data;
return {
status: "OK",
data : data
};
} catch(e) {
return {
status: "ERR",
message: e.message
};
}
}