fix: update content list of specialist, subspecialist, etc

This commit is contained in:
riefive
2025-10-06 11:06:29 +07:00
parent 301cb82803
commit fff5f2c11d
9 changed files with 34 additions and 718 deletions

No files matched your search

+3 -2
View File
@@ -28,11 +28,12 @@ import {
handleActionRemove,
handleCancelForm,
} from '~/handlers/device.handler'
import { uoms, getUomList } from '~/handlers/_shared.handler'
// Services
import { getList, getDetail } from '~/services/device.service'
import { getValueLabelList as getUomList } from '~/services/uom.service'
const uoms = ref<{ value: string; label: string }[]>([])
const title = ref('')
const {
@@ -116,8 +117,8 @@ watch([recId, recAction], () => {
})
onMounted(async () => {
uoms.value = await getUomList()
await getToolsList()
await getUomList()
})
</script>