fix: customer vnLinkPhone
This commit is contained in:
parent
0208debdbe
commit
dd739b1165
|
@ -84,27 +84,28 @@ const sumRisk = ({ clientRisks }) => {
|
|||
<VnLv :label="t('customer.summary.customerId')" :value="entity.id" />
|
||||
<VnLv :label="t('globals.name')" :value="entity.name" />
|
||||
<VnLv :label="t('customer.summary.contact')" :value="entity.contact" />
|
||||
<VnLv :value="entity.phone">
|
||||
<template #label>
|
||||
{{ t('customer.extendedList.tableVisibleColumns.phone') }}
|
||||
<VnLv :label="t('customer.extendedList.tableVisibleColumns.phone')">
|
||||
<template #value>
|
||||
<VnLinkPhone :phone-number="entity.phone" />
|
||||
</template>
|
||||
</VnLv>
|
||||
<VnLv :value="entity.mobile">
|
||||
<template #label>
|
||||
{{ t('customer.summary.mobile') }}
|
||||
<VnLinkPhone :phone-number="entity.mobile" />
|
||||
<VnLinkPhone
|
||||
say-simple
|
||||
:phone-number="entity.mobile"
|
||||
:channel="entity.country?.saySimpleCountry?.channel"
|
||||
class="q-ml-xs"
|
||||
/>
|
||||
<VnLv :label="t('customer.summary.mobile')">
|
||||
<template #value>
|
||||
<div class="col">
|
||||
<VnLinkPhone :phone-number="entity.mobile" />
|
||||
</div>
|
||||
<div class="col">
|
||||
<VnLinkPhone
|
||||
say-simple
|
||||
:phone-number="entity.mobile"
|
||||
:channel="entity.country?.saySimpleCountry?.channel"
|
||||
class="q-ml-xs"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</VnLv>
|
||||
<VnLv :value="entity.email" copy
|
||||
><template #label>
|
||||
{{ t('globals.params.email') }}
|
||||
<VnLv :label="t('globals.params.email')"
|
||||
><template #value>
|
||||
<VnLinkMail email="entity.email"></VnLinkMail> </template
|
||||
></VnLv>
|
||||
<VnLv :label="t('globals.department')">
|
||||
|
|
Loading…
Reference in New Issue