fix: แก้ สาขาที่ลงทะเบียนไม่มา
This commit is contained in:
parent
48527a2f09
commit
56f880c4e3
2 changed files with 15 additions and 4 deletions
|
|
@ -24,10 +24,19 @@ const props = defineProps<{
|
|||
optionsBranch?: { id: string; name: string }[];
|
||||
}>();
|
||||
|
||||
onMounted(async () => {
|
||||
if(!!props.optionsBranch) {
|
||||
registeredBranchId.value = props.optionsBranch[0].id ;
|
||||
}
|
||||
onMounted( async() => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
setTimeout(() => {
|
||||
if(!!props.optionsBranch ){
|
||||
registeredBranchId.value = props.optionsBranch[0].id ;
|
||||
|
||||
}
|
||||
}, 100);
|
||||
});
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -3094,6 +3094,8 @@ watch(inputSearchProductAndService, async () => {
|
|||
class="col-md-10 col-sm-12"
|
||||
>
|
||||
<div class="surface-1 rounded bordered q-pa-lg full-width row">
|
||||
|
||||
|
||||
<BasicInformation
|
||||
dense
|
||||
service
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue