This commit is contained in:
Warunee Tamkoo 2024-05-20 13:47:27 +07:00
parent 315520b378
commit 0316d26cd9

View file

@ -43,7 +43,7 @@ function onSubmit() {
};
http
.put(config.API.kpiUserEvaluation, body.formScore)
.put(config.API.kpiEvaluation, body.formScore)
.then((res) => {
success($q, "บันทึกสำเร็จ");
})
@ -53,7 +53,7 @@ function onSubmit() {
function getData() {
showLoader();
http
.get(config.API.kpiUserEvaluation)
.get(config.API.kpiEvaluation)
.then((res) => {
dataLevel.value = res.data.result.data;
})