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