0
0
Fork 0

Merge branch 'dev' into 6943_fix_customer_module

This commit is contained in:
Alex Moreno 2024-09-24 05:38:47 +00:00
commit 5fc306e11e
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ const props = defineProps({
});
const modelValue = ref(
props.location
? `${props.location?.postcode} - ${props.location?.city}(${props.location?.province?.name}), ${props.location?.country?.name}`
? `${props.location?.postcode}, ${props.location?.city}(${props.location?.province?.name}), ${props.location?.country?.name}`
: null
);
function showLabel(data) {
return `${data.code} - ${data.town}(${data.province}), ${data.country}`;
return `${data.code}, ${data.town}(${data.province}), ${data.country}`;
}
const handleModelValue = (data) => {
emit('update:model-value', data);