fix support
This commit is contained in:
@@ -63,7 +63,7 @@ const Support: FC = () => {
|
|||||||
data?.data?.supportPlans?.map((item: PlanItemType) => {
|
data?.data?.supportPlans?.map((item: PlanItemType) => {
|
||||||
return (
|
return (
|
||||||
<div key={item.id} className='flex-1 flex flex-col items-center'>
|
<div key={item.id} className='flex-1 flex flex-col items-center'>
|
||||||
<div className='text-center w-full'>
|
<div className='text-center flex flex-col flex-1 w-full'>
|
||||||
<div className='font-bold'>
|
<div className='font-bold'>
|
||||||
{item.name}
|
{item.name}
|
||||||
</div>
|
</div>
|
||||||
@@ -74,12 +74,14 @@ const Support: FC = () => {
|
|||||||
{item.price === 0 ? 'رایگان' : NumberFormat(item.price)}
|
{item.price === 0 ? 'رایگان' : NumberFormat(item.price)}
|
||||||
</div>
|
</div>
|
||||||
<div className='mt-1 text-sm'>
|
<div className='mt-1 text-sm'>
|
||||||
تومان
|
{item.price === 0 ? ' ' : 'تومان'}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<BuyPlan
|
<div className='flex-1 flex items-end'>
|
||||||
id={item.id}
|
<BuyPlan
|
||||||
/>
|
id={item.id}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
@@ -115,7 +117,10 @@ const Support: FC = () => {
|
|||||||
:
|
:
|
||||||
<CloseCircle className='xl:size-8 size-6' color='#D50303' variant='Bold' />
|
<CloseCircle className='xl:size-8 size-6' color='#D50303' variant='Bold' />
|
||||||
:
|
:
|
||||||
<div className='text-xs'>{row.featureValue}</div>
|
<div className='text-xs'>
|
||||||
|
{row.featureValue}
|
||||||
|
{row.featureKey === 'ticket_limit' && ' (روزانه)'}
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
@@ -160,7 +165,10 @@ const Support: FC = () => {
|
|||||||
:
|
:
|
||||||
<CloseCircle className='size-6' color='#D50303' variant='Bold' />
|
<CloseCircle className='size-6' color='#D50303' variant='Bold' />
|
||||||
:
|
:
|
||||||
<div className='text-sm'>{row.featureValue}</div>
|
<div className='text-sm'>
|
||||||
|
{row.featureValue}
|
||||||
|
{row.featureKey === 'ticket_limit' && ' (روزانه)'}
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
))
|
))
|
||||||
|
|||||||
Reference in New Issue
Block a user