chore: update default theme style

This commit is contained in:
JustSong
2025-01-31 22:50:48 +08:00
parent e8ea87fff3
commit 28a271a896
3 changed files with 31 additions and 28 deletions

View File

@@ -1,14 +1,16 @@
import React from 'react'; import React from 'react';
import { Header, Segment } from 'semantic-ui-react'; import { Card } from 'semantic-ui-react';
import ChannelsTable from '../../components/ChannelsTable'; import ChannelsTable from '../../components/ChannelsTable';
const Channel = () => ( const Channel = () => (
<> <div className='dashboard-container'>
<Segment> <Card fluid className='chart-card'>
<Header as='h3'>管理渠道</Header> <Card.Content>
<ChannelsTable /> <Card.Header className='header'>管理渠道</Card.Header>
</Segment> <ChannelsTable />
</> </Card.Content>
</Card>
</div>
); );
export default Channel; export default Channel;

View File

@@ -1,5 +1,5 @@
.dashboard-container { .dashboard-container {
padding: 20px 20px 40px; padding: 20px 40px 40px;
background-color: #ffffff; background-color: #ffffff;
margin-top: -15px; /* 减小与导航栏的间距 */ margin-top: -15px; /* 减小与导航栏的间距 */
} }

View File

@@ -17,11 +17,11 @@ const Home = () => {
const { success, message, data } = res.data; const { success, message, data } = res.data;
if (success) { if (success) {
let oldNotice = localStorage.getItem('notice'); let oldNotice = localStorage.getItem('notice');
if (data !== oldNotice && data !== '') { if (data !== oldNotice && data !== '') {
const htmlNotice = marked(data); const htmlNotice = marked(data);
showNotice(htmlNotice, true); showNotice(htmlNotice, true);
localStorage.setItem('notice', data); localStorage.setItem('notice', data);
} }
} else { } else {
showError(message); showError(message);
} }
@@ -59,12 +59,11 @@ const Home = () => {
<div className='dashboard-container'> <div className='dashboard-container'>
<Card fluid className='chart-card'> <Card fluid className='chart-card'>
<Card.Content> <Card.Content>
<Card.Header className='header'> <Card.Header className='header'>欢迎使用 One API</Card.Header>
欢迎使用 One API
</Card.Header>
<Card.Description style={{ lineHeight: '1.6' }}> <Card.Description style={{ lineHeight: '1.6' }}>
<p> <p>
One API 是一个 OpenAI 接口管理和分发系统可以帮助您更好地管理和使用 OpenAI API One API 是一个 OpenAI
接口管理和分发系统可以帮助您更好地管理和使用 OpenAI API
</p> </p>
{!userState.user && ( {!userState.user && (
<p> <p>
@@ -80,9 +79,7 @@ const Home = () => {
<Grid.Column> <Grid.Column>
<Card fluid className='chart-card'> <Card fluid className='chart-card'>
<Card.Content> <Card.Content>
<Card.Header className='header'> <Card.Header className='header'>使用说明</Card.Header>
使用说明
</Card.Header>
<Card.Description style={{ lineHeight: '1.6' }}> <Card.Description style={{ lineHeight: '1.6' }}>
<p>1. 登录并获取令牌</p> <p>1. 登录并获取令牌</p>
<p>2. 在您的应用中使用令牌</p> <p>2. 在您的应用中使用令牌</p>
@@ -95,9 +92,7 @@ const Home = () => {
<Grid.Column> <Grid.Column>
<Card fluid className='chart-card'> <Card fluid className='chart-card'>
<Card.Content> <Card.Content>
<Card.Header className='header'> <Card.Header className='header'>功能特点</Card.Header>
功能特点
</Card.Header>
<Card.Description style={{ lineHeight: '1.6' }}> <Card.Description style={{ lineHeight: '1.6' }}>
<p> 多渠道接口管理</p> <p> 多渠道接口管理</p>
<p> 实时监控和统计</p> <p> 实时监控和统计</p>
@@ -110,9 +105,7 @@ const Home = () => {
<Grid.Column> <Grid.Column>
<Card fluid className='chart-card'> <Card fluid className='chart-card'>
<Card.Content> <Card.Content>
<Card.Header className='header'> <Card.Header className='header'>技术支持</Card.Header>
技术支持
</Card.Header>
<Card.Description style={{ lineHeight: '1.6' }}> <Card.Description style={{ lineHeight: '1.6' }}>
<p> 完整的API文档</p> <p> 完整的API文档</p>
<p> 详细的使用教程</p> <p> 详细的使用教程</p>
@@ -136,10 +129,18 @@ const Home = () => {
<Card.Meta>系统信息总览</Card.Meta> <Card.Meta>系统信息总览</Card.Meta>
<Card.Description style={{ lineHeight: '1.6' }}> <Card.Description style={{ lineHeight: '1.6' }}>
<p>名称{statusState?.status?.system_name}</p> <p>名称{statusState?.status?.system_name}</p>
<p>版本{statusState?.status?.version ? statusState?.status?.version : "unknown"}</p> <p>
版本
{statusState?.status?.version
? statusState?.status?.version
: 'unknown'}
</p>
<p> <p>
源码 源码
<a href='https://github.com/songquanpeng/one-api' target='_blank'> <a
href='https://github.com/songquanpeng/one-api'
target='_blank'
>
https://github.com/songquanpeng/one-api https://github.com/songquanpeng/one-api
</a> </a>
</p> </p>