fix_vnLinkPhone #1659

Merged
jsegarra merged 10 commits from fix_vnLinkPhone into dev 2025-04-02 07:53:16 +00:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit d71029c7e9 - Show all commits

View File

@ -1,7 +1,7 @@
<script setup>
import { ref, reactive, useAttrs, onBeforeMount, capitalize } from 'vue';
import axios from 'axios';
import { parsePhone } from 'src/filters';
import { dashIfEmpty, parsePhone } from 'src/filters';
Review

Con este cambio, evito depender del numero de instancias, ahora con atributos es suficiente

Con este cambio, evito depender del numero de instancias, ahora con atributos es suficiente
import useOpenURL from 'src/composables/useOpenURL';
const props = defineProps({
@ -31,9 +31,8 @@ onBeforeMount(async () => {
if (!channel) channel = defaultChannel;
phone.value = await parsePhone(props.phoneNumber, props.country?.toLowerCase());
config[
type
].url = `${url}?customerIdentity=%2B${phone.value}&channelId=${channel}`;
config[type].url =
`${url}?customerIdentity=%2B${phone.value}&channelId=${channel}`;
}
});
@ -57,5 +56,6 @@ function handleClick() {
{{ capitalize(type).replace('-', '') }}
</QTooltip>
</QBtn>
{{ phoneNumber }}
<span>{{ dashIfEmpty(phone) }}</span>
</template>