Files
FE_CPONE/test/vuex/one-send-wa-cpone/api/wa.js
2026-04-27 10:13:31 +07:00

110 lines
2.7 KiB
JavaScript

const URL = "/one-api/mockup/sendwa/sendwa"
export async function getsetup(token) {
try {
var resp = await axios.post(URL + '/getsetup', { token: token });
if (resp.status != 200) {
return {
status: "ERR",
message: resp.statusText
};
}
let data = resp.data;
return data;
} catch (e) {
return {
status: "ERR",
message: e.message
};
}
}
export async function search(prm) {
try {
var resp = await axios.post(URL + '/search', 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
};
}
}
export async function getdetail(prm) {
try {
var resp = await axios.post(URL + '/getdetail', 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
};
}
}
export async function savehandover(prm) {
try {
var resp = await axios.post(URL + '/saveHandover', 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
};
}
}
export async function sendwa(prm) {
try {
var resp = await axios.post(URL + '/sendMsg', 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
};
}
}
export async function deletehandoverdetail(prm) {
try {
var resp = await axios.post(URL + 'sendemail/deletehandoverdetail', 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
};
}
}