fix bug design
This commit is contained in:
+1
-1
@@ -82,7 +82,7 @@ define(['./workbox-e7681877'], (function (workbox) { 'use strict';
|
|||||||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||||
}, {
|
}, {
|
||||||
"url": "index.html",
|
"url": "index.html",
|
||||||
"revision": "0.4if6iedhk8"
|
"revision": "0.k80r95n1blo"
|
||||||
}], {});
|
}], {});
|
||||||
workbox.cleanupOutdatedCaches();
|
workbox.cleanupOutdatedCaches();
|
||||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||||
|
|||||||
+1
-1
@@ -282,7 +282,7 @@
|
|||||||
"doer": "انجام دهنده",
|
"doer": "انجام دهنده",
|
||||||
"tracking_number": "شماره پیگیری",
|
"tracking_number": "شماره پیگیری",
|
||||||
"description_transaction": "شرح تراکنش",
|
"description_transaction": "شرح تراکنش",
|
||||||
"amount": "مبلغ",
|
"amount": "مبلغ (تومان)",
|
||||||
"date": "تاریخ تراکنش",
|
"date": "تاریخ تراکنش",
|
||||||
"order_number": "شماره سفارش",
|
"order_number": "شماره سفارش",
|
||||||
"transaction_type": "نوع تراکنش",
|
"transaction_type": "نوع تراکنش",
|
||||||
|
|||||||
@@ -24,11 +24,11 @@ const DanakLearning: FC = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='mt-7'>
|
<div>
|
||||||
{
|
{
|
||||||
getLearnings.data?.data?.learnings?.map((item: LearningItemType) => {
|
getLearnings.data?.data?.learnings?.map((item: LearningItemType) => {
|
||||||
return (
|
return (
|
||||||
<div key={item.id} className='flex gap-3'>
|
<div key={item.id} className='flex gap-3 mt-7'>
|
||||||
<Link to={Pages.learning.detail + item.id}>
|
<Link to={Pages.learning.detail + item.id}>
|
||||||
<img src={item.coverUrl} alt='danak-learning-1' className='w-24 object-cover rounded-2xl' />
|
<img src={item.coverUrl} alt='danak-learning-1' className='w-24 object-cover rounded-2xl' />
|
||||||
</Link>
|
</Link>
|
||||||
|
|||||||
@@ -25,13 +25,9 @@ const LearningDetail: FC = () => {
|
|||||||
:
|
:
|
||||||
<div className='xl:mt-9 mt-4 flex flex-wrap xl:gap-8 gap-6 text-sm'>
|
<div className='xl:mt-9 mt-4 flex flex-wrap xl:gap-8 gap-6 text-sm'>
|
||||||
<div className='flex-1'>
|
<div className='flex-1'>
|
||||||
<div className='text-lg'>
|
|
||||||
{
|
|
||||||
getLearningDetail.data?.data?.learning?.title
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='mt-10 bg-white p-8 rounded-3xl'>
|
|
||||||
|
<div className='bg-white p-8 rounded-3xl'>
|
||||||
<video className='w-full rounded-3xl' controls>
|
<video className='w-full rounded-3xl' controls>
|
||||||
<source src={getLearningDetail.data?.data?.learning?.videoUrl} />
|
<source src={getLearningDetail.data?.data?.learning?.videoUrl} />
|
||||||
</video>
|
</video>
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ const ReceiptsDetail: FC = () => {
|
|||||||
{t('receip.factor_number')}
|
{t('receip.factor_number')}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{moment(getInvoce.data?.data?.invoice.createdAt).format('jYYYY') + '-' + getInvoce.data?.data?.invoice.numericId}
|
{moment(getInvoce.data?.data?.invoice.createdAt).format('jYYYY') + getInvoce.data?.data?.invoice.numericId}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='flex justify-between h-12 border-b items-center'>
|
<div className='flex justify-between h-12 border-b items-center'>
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ const ReceiptsList: FC = () => {
|
|||||||
getInvoices.data?.data?.invoices?.map((item: ReceiptItemType) => {
|
getInvoices.data?.data?.invoices?.map((item: ReceiptItemType) => {
|
||||||
return (
|
return (
|
||||||
<tr className='tr'>
|
<tr className='tr'>
|
||||||
<Td text={moment(item.createdAt).format('jYYYY') + '-' + item.numericId} />
|
<Td text={moment(item.createdAt).format('jYYYY') + item.numericId} />
|
||||||
{/* <Td text={item.user.firstName + ' ' + item.user.lastName} /> */}
|
{/* <Td text={item.user.firstName + ' ' + item.user.lastName} /> */}
|
||||||
<Td text={''}>
|
<Td text={''}>
|
||||||
<div className='dltr text-right'>
|
<div className='dltr text-right'>
|
||||||
|
|||||||
Reference in New Issue
Block a user