รายการการประเมินผลการปฏิบัติราชการระดับบุคคล => ปรับ UI

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-23 18:05:18 +07:00
parent b05065ba67
commit 650948d68a
10 changed files with 162 additions and 97 deletions

View file

@ -20,7 +20,7 @@ const props = defineProps({
fectData: { type: Function, require: true },
});
const id = ref<string>(route.params.id.toString());
const id = ref<string>(route.params.id ? route.params.id.toString() : "");
const mixin = useCounterMixin();
const { dialogConfirm, messageError, showLoader, hideLoader, success } = mixin;