From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/chartView.tsx | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git "a/app/\050commonLayout\051/app/\050appDetailLayout\051/\133appId\135/overview/chartView.tsx" "b/app/\050commonLayout\051/app/\050appDetailLayout\051/\133appId\135/overview/chartView.tsx" index 4afba06..bb1e4fd 100644 --- "a/app/\050commonLayout\051/app/\050appDetailLayout\051/\133appId\135/overview/chartView.tsx" +++ "b/app/\050commonLayout\051/app/\050appDetailLayout\051/\133appId\135/overview/chartView.tsx" @@ -46,14 +46,14 @@ return ( <div> - <div className='system-xl-semibold mb-4 mt-8 flex flex-row items-center text-text-primary'> + <div className='flex flex-row items-center mt-8 mb-4 text-gray-900 text-base'> <span className='mr-3'>{t('appOverview.analysis.title')}</span> <SimpleSelect items={Object.entries(TIME_PERIOD_MAPPING).map(([k, v]) => ({ value: k, name: t(`appLog.filter.period.${v.name}`) }))} className='mt-0 !w-40' onSelect={(item) => { const id = item.value - const value = TIME_PERIOD_MAPPING[id]?.value ?? '-1' + const value = TIME_PERIOD_MAPPING[id]?.value || '-1' const name = item.name || t('appLog.filter.period.allTime') onSelect({ value, name }) }} @@ -61,13 +61,13 @@ /> </div> {!isWorkflow && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> <ConversationsChart period={period} id={appId} /> <EndUsersChart period={period} id={appId} /> </div> )} {!isWorkflow && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> {isChatApp ? ( <AvgSessionInteractions period={period} id={appId} /> @@ -79,24 +79,24 @@ </div> )} {!isWorkflow && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> <UserSatisfactionRate period={period} id={appId} /> <CostChart period={period} id={appId} /> </div> )} {!isWorkflow && isChatApp && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> <MessagesChart period={period} id={appId} /> </div> )} {isWorkflow && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> <WorkflowMessagesChart period={period} id={appId} /> <WorkflowDailyTerminalsChart period={period} id={appId} /> </div> )} {isWorkflow && ( - <div className='mb-6 grid w-full grid-cols-1 gap-6 xl:grid-cols-2'> + <div className='grid gap-6 grid-cols-1 xl:grid-cols-2 w-full mb-6'> <WorkflowCostChart period={period} id={appId} /> <AvgUserInteractions period={period} id={appId} /> </div> -- Gitblit v1.8.0