// API : // search bank // paramater : query , page , rowPerPage const URL = "/one-api/mockup/process/verification_px/"; export async function search_order(prm) { try { var resp = await axios.post(URL + 'search_box/search_order', prm) if (resp.status != 200) { return { status: "ERR", message: resp.statusText }; } let data = resp.data; return data; } catch(e) { return { status: "ERR", message: e.message }; } }